如何从local.xml中删除<action method="addCartLink"></action>
。 customer.xml中的代码:
<reference name="top.links">
<block type="checkout/links" name="checkout_cart_link">
<action method="addCheckoutLink"></action>
<action method="addCartLink"></action>
</block>
</reference>
答案 0 :(得分:2)
top.links
上有一个名为removeLinkByUrl
的方法,应该为你做。我没有对此进行测试,因此您可能需要完整的URL,但要点是:
<reference name="top.links">
<action method="removeLinkByUrl"><url>checkout/cart</url></action>
</reference>
希望有所帮助!
谢谢, 乔