Answers:
您还可以通过引用并按名称删除它们来删除local.xml中的一些顶部链接。
<reference name="top.links">
<remove name="wishlist_link"/>
<remove name="checkout_cart_link"/>
</reference>
仅当顶部链接使用以下名称创建时,此方法才有效:
<reference name="top.links">
<block type="wishlist/links" name="wishlist_link" />
<action method="addLinkBlock"><blockName>wishlist_link</blockName></action>
</reference>
对于登录和注销,由于未使用“名称”来调用它们,因此您无法通过这种方式将其删除。
您可以通过以下.xml文件中的编辑引用name =“ top.links”块进行修改
1. app/design/frontend/Your_theme/default/layout/checkout.xml
2. app/design/frontend/Your_theme/default/layout/customer.xml
检查以下帖子
你可以从这里得到更多的想法
您可以使用
<!-- Removes 'Log Out' link-->
<reference name="top.links">
<action method="removeLinkByUrl">
<url helper="customer/getLogoutUrl"/>
</action>
</reference>