0

除了 Magento 的标准订单跟踪页面外,top.links 中的登录/注销链接随处可见。我已经用默认值替换了 customer.xml,但它不能解决问题。登录和注销链接都不会显示在该页面上。所有其他链接都显示正常。我无法找到解决此问题的方法。任何人?

谢谢

4

1 回答 1

0

在您的自定义设置中很难,所以我只是试图让您朝着正确的方向前进:

获取您当前的布局句柄,也许您将此行添加到控制器或任何活动代码中,以获取页面活动的句柄:

Zend_Debug::dump(Mage::app()->getLayout()->getUpdate()->getHandles());

检查布局xml文件中的每个活动布局句柄,也许链接被删除如果它没有被删除,它可能根本没有被添加。

通过 layout-xml-file 删除的方法:

<reference name="top.links">
            <action method="removeLinkByUrl">
                <url helper="customer/getLoginUrl" />
            </action>
</reference>

通过 layout-xml-file 添加的方式:

<action method="addLink" translate="label title" module="customer">
  <label>Log In</label>
  <url helper="customer/getLoginUrl"/>
  <title>Log In</title>
  <prepare/>
  <urlParams/>
  <position>100</position>
</action>

希望这可以帮助!

于 2013-06-11T12:44:09.647 回答