在local.xml或checkout.xml中将“我的购物车”添加到top.links magento?

时间:2011-09-21 17:22:41

标签: magento magento-1.5

这个问题的两个部分:

  1. 如何将我的购物车添加到local.xml或checkout.xml?我有一个自定义模板,从未调用过。寻找它被移除的地方,但不确定我在正确的地方寻找。
  2. 我已尝试添加到local.xml

    <reference name="root">
        <reference name="top.links">
    
    <action method="addCartLink"></action>
    
    </reference>
        </reference>
    

    但它打破了magento。基本上我有一个软添加到购物车,并希望将默认的magento“我的购物车”拉到标题,所以ajax在页面上更新,就像在默认的magento模板中一样。

    第二个标准杆 - “我的购物车”的代码在哪里进行调整?

1 个答案:

答案 0 :(得分:1)

<reference name="top.links">
    <block type="checkout/links" name="checkout_cart_link">
        <action method="addCartLink"></action>
    </block>
</reference>

您可能需要清除缓存。