Breadcrumbs do not appear on magento cms pages

Puzzles do not appear on any cms page. What could be the problem?

I checked

admin -> system -> config -> web -> default pages -> Show Breadcrumbs for CMS pages

option.

$crumbs variable appears as null in the /html/breadcrumbs.phtml file.

Please advise me.

+4
source share
2 answers

Just add below code to your template file like 1-column.phtml which works for me!

 echo $this->getLayout()->getBlock('breadcrumbs')->toHtml(); 

magnet version 1.5.1.0

+2
source

Normally Magento will not display breadcrump on CMS pages, you need to configure breadcrump code to display it on cms pages. I think the following link may help you.

http://www.gowrisankar.com/adding-breadcrump-to-cms-pages-in-magento#.Us8LldJdUfQ

+2
source

Source: https://habr.com/ru/post/1380571/


All Articles