Search code examples
magentohidebreadcrumbs

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.


Solution

  • 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.