从标题中删除“我的心愿单”和“结帐” - Magento

时间:2015-11-12 12:22:04

标签: magento

我理解删除我必须使用的Local.xml方法的顶部链接。

但是,我想删除标题中“我的帐户”下拉的“我的心愿单”和“结帐”链接?

关于如何做到这一点的任何想法?

我的网站可以在这里找到......

http://magento-12075-28005-67407.cloudwaysapps.com/

enter image description here

1 个答案:

答案 0 :(得分:0)

正如Question中所述,您可以通过添加local.xml

来实现
<default>
  <reference name="top.links"> 
    <action method="removeLinkByUrl">
      <url helper="checkout/url/getCartUrl" />
    </action> 
    <block type="wishlist/links" name="wishlist_link"/>
    <action method="removeLinkBlock">
      <blockName>wishlist_link</blockName></action>
    </action>
  </reference>
</default>