我页面顶部链接中的“我的购物车”和“结帐”链接丢失了。在app/design/frontend/default/mobileshoppe/layout/checkout.xml
我有这段代码:
<reference name="top.links">
<block type="checkout/links" name="checkout_cart_link">
<action method="addCartLink"></action>
<action method="addCheckoutLink"></action>
</block>
</reference>
那么为什么我的链接会丢失?
答案 0 :(得分:0)
您的local.xml
文件是要加载的最后一个xml文件,因此首先检查它是否包含某些内容;
<reference name="top.links">
<action method="removeLinkByUrl">
<url helper="checkout/cart"/>
</action>
</reference>
或
<reference name="top.links">
<remove name="checkout_cart_link"/>
</reference>
我还会检查主题layout
文件夹中的其他xml文件以获取上述代码。