100% Satisfaction Guaranteed. Click here to read why you should by from us.

Edit Magento CMS Page Breadcrumbs


Have you ever wanted to edit the breadcrumbs on a CMS Page in Magento?

We have built a simple extension that has made it easier to edit breadcrumbs.  It makes it easy to remove breadcrumbs on some CMS pages and add multi-level breadcrumbs as well.

Here is the link with more information: Custom CMS Breadcrumbs for Magento

Here is a screenshot of the interface that the extension adds to the CMS edit page:

If you only have a small number of CMS pages, then you may just want to edit the layout xml to achieve the same result. To edit the Layout xml, go to a CMS Page then “Design > Layout Update XML” and paste in the following code (you can edit the link,title,name,label of each breadcrumb):

  1.  
  2. <reference name="root">
  3. <action method="unsetChild"><alias>breadcrumbs</alias></action>
  4.  
  5. <block type="page/html_breadcrumbs" name="breadcrumbs" as="breadcrumbs">
  6. <action method="addCrumb">
  7. <crumbName>Home</crumbName>
  8. <crumbInfo>
  9. <label>Home</label>
  10. <title>Home</title>
  11. <link>/</link>
  12. </crumbInfo>
  13. </action>
  14. <action method="addCrumb">
  15. <crumbName>Crumb 1</crumbName>
  16. <crumbInfo>
  17. <label>Crumb 1</label>
  18. <title>Crumb 1</title>
  19. <link>/crumb1</link>
  20. </crumbInfo>
  21. </action>
  22. <action method="addCrumb">
  23. <crumbName>Crumb 2</crumbName>
  24. <crumbInfo>
  25. <label>Crumb 2</label>
  26. <title>Crumb 2</title>
  27. </crumbInfo>
  28. </action>
  29. </block>
  30. </reference>
  31.  




Page 1 of 1 pages