2011-09-21 47 views
0

此問題的兩部分:將「我的購物車」添加到top.links在local.xml或checkout.xml中的magento?

  1. 如何將我的購物車添加到local.xml或checkout.xml?我有一個自定義模板,它從來沒有被稱爲。尋找它在哪裏被刪除,但不知道我在正確的地方尋找。

我曾嘗試加入local.xml中

<reference name="root"> 
    <reference name="top.links"> 

<action method="addCartLink"></action> 

</reference> 
    </reference> 

但它打破了Magento的。基本上我有一個軟添加到購物車,並希望將默認magento「我的購物車」拉到標題,所以頁面上的ajax更新就像它在默認的magento模板中一樣。

2nd par - 「我的購物車」的代碼在哪裏可以調整?

+0

至於第二部分...你想要做什麼樣的調整? –

+0

我有一個自定義標題,我的圖形設計師製作了一個自定義的「我的購物袋」。如何在我的header.phtml文件中使用PHP回顯「我的購物車」? –

+0

也許這可以幫到你。 http://www.exploremagento.com/magento/move-cart-to-header-or-anywhere-in-magento.php –

回答

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

您可能必須清除緩存。

+0

top.links的模板位於'app /設計/前端/基地/默認/模板/頁/ html/top.links.phtml'我不能說足夠的,這應該被移動到您的自定義模板之前被編輯。 –

+0

購物車和結帳鏈接 在base/default/layout/checkout.xml中設置 –

+0

您的模板中的translate.csv中的名稱可以更改locale/en_US / –

相關問題