4

Breadcrumbs are not displaying in any cms page. What may be the problem?

I checked the

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

option yes.

$crumbs variable is coming as null in page/html/breadcrumbs.phtml.

Please advise me.

Chuck
  • 998
  • 8
  • 17
  • 30
Gowri
  • 16,587
  • 26
  • 100
  • 160

2 Answers2

2

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

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

DWils
  • 390
  • 1
  • 4
  • 16
Goysar
  • 529
  • 7
  • 25
2

Simply i add below code in template file like 1-column.phtml that works me !

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

magneto version 1.5.1.0

Gowri
  • 16,587
  • 26
  • 100
  • 160