2

私はマジェントが初めてです。お問い合わせページのブレッドクラムが表示されません。Magento の連絡先ページでブレッドクラムを作成できますが、ブレッドクラムはすべてのページに表示されます。

4

1 に答える 1

11

はい、修正します。contact.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>
于 2012-04-21T05:13:31.780 に答える