如何通过customer.xml在magento的顶部链接下添加购物车网址

时间:2010-04-22 10:24:20

标签: magento

我尝试了很多在magento中添加购物车网址

请告诉我如何通过customer.xml在magento的顶部链接下添加购物车网址

我这样做了。

<default>

        <!-- Mage_Customer -->
        <reference name="top.links">
            <action method="addLink" translate="label title" module="checkout"><label>Shopping Cart</label><url helper="checkout/getShoppingCartUrl"/><title>Shopping Cart</title><prepare/><urlParams/><position>10</position></action>
        </reference>
    </default>

1 个答案:

答案 0 :(得分:3)

试试这个:

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