Skip to content

Instantly share code, notes, and snippets.

@tiberiur
Created April 14, 2016 09:02
Show Gist options
  • Save tiberiur/37af912eec4a0a4db434cc9a4fdb922d to your computer and use it in GitHub Desktop.
Save tiberiur/37af912eec4a0a4db434cc9a4fdb922d to your computer and use it in GitHub Desktop.
[MAGENTO] Add custom breadcrumbs from XML
<reference name="breadcrumbs">
<action method="addCrumb">
<crumbName>Home</crumbName>
<crumbInfo>
<label>Home</label>
<title>Home</title>
<link>/home</link>
</crumbInfo>
</action>
<action method="addCrumb">
<crumbName>Sample Form</crumbName>
<crumbInfo>
<label>Sample Form</label>
<title>Sample Form</title>
<link>/forms/sample/</link>
</crumbInfo>
</action>
</reference>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment