Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove or hide breadcrumbs for a particular page in magento

I am trying to hide the (Home > Catalog Advanced Search > Results) breadcrumbs alone in magento during the advanced search results. I don't want to navigate through the breadcrumbs in result page. Anybody help me to make this possible.

like image 774
Shanthi Avatar asked Nov 29 '22 10:11

Shanthi


2 Answers

Try using

<remove name="breadcrumbs" />

Within specific handle of your layout xml file. For example

<catalog_category_default>
<remove name="breadcrumbs" />
</catalog_category_default>

Or try using that within the cms page layout form in backend under CMS->Pages.

like image 50
Harit Avatar answered Dec 06 '22 06:12

Harit


You can do by the admin:

CMS-> Pages:
Page Information
Design:
Custom Design
Custom Layout Update XML: <remove name="breadcrumbs" />
like image 22
Ezequiel De Simone Avatar answered Dec 06 '22 06:12

Ezequiel De Simone