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):
<reference name="root"> <action method="unsetChild"><alias>breadcrumbs</alias></action> <block type="page/html_breadcrumbs" name="breadcrumbs" as="breadcrumbs"> <action method="addCrumb"> <crumbName>Home</crumbName> <crumbInfo> <label>Home</label> <title>Home</title> <link>/</link> </crumbInfo> </action> <action method="addCrumb"> <crumbName>Crumb 1</crumbName> <crumbInfo> <label>Crumb 1</label> <title>Crumb 1</title> <link>/crumb1</link> </crumbInfo> </action> <action method="addCrumb"> <crumbName>Crumb 2</crumbName> <crumbInfo> <label>Crumb 2</label> <title>Crumb 2</title> </crumbInfo> </action> </block> </reference>


