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

Shanthi picture Shanthi · Nov 20, 2014 · Viewed 17.4k times · Source

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.

Answer

Harit picture Harit · Nov 20, 2014

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.