如何显示magento联系页面面包屑?

2 breadcrumbs magento

我是magento的新手.联系页面痕迹没有显示.我可以在magento联系页面中创建面包屑,但是痕迹会显示在所有页面上.

小智 11

是的,我修好了.在contacts.xml中,我添加了代码

<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>contacts</crumbName>
      <crumbInfo><label>Contact us</label><title>Contact us</title></crumbInfo>
    </action>
  </block>
</reference>
Run Code Online (Sandbox Code Playgroud)