2015-09-01 71 views
0

我已經審閱了有關在Magento中創建自己的自定義頁腳的幾個教程,但沒有關於將鏈接添加到默認頁腳的鏈接。我想在Magento默認頁腳的「帳戶」div下添加一些鏈接。下面是我在應用程序/設計/前端/ RWD /默認/佈局/ customer.xml:如何將鏈接添加到Magento默認頁腳

<default> 
    <!-- Mage_Customer --> 
    <reference name="top.links"> 
     <action method="addLink" translate="label title" module="customer"><label>My Account</label><url helper="customer/getAccountUrl"/><title>My Account</title><prepare/><urlParams/><position>10</position></action> 
     <action method="addLink" translate="label title before_text" module="customer"><label>Register</label><url helper="customer/getRegisterUrl" /><title>Register</title><prepare/><urlParams/><position>100</position><li/><a/></action> 
    </reference> 
    <reference name="footer_links2"> 
     <action method="addLink" translate="label title" module="catalog"><label>My Account</label><url helper="customer/getAccountUrl" /><title>My Account</title></action> 
     <action method="addLink" translate="label title"><label>Customer Service</label><url helper="/customer-service/" /><title>Customer Service</title><prepare>true</prepare></action> 
    </reference> 
</default> 

回答

0

可以在footer.your代碼使用下面的代碼添加鏈接幾乎是正確的,但你參考犯的錯誤名字讓你確保引用名footer_links

<reference name="footer_links"> 
      <action method="addLink" translate="label title" module="catalog"><label>My Account</label><url helper="customer/getAccountUrl" /><title>My Account</title></action> 
      <action method="addLink" translate="label title"><label>Customer Service</label><url helper="/customer-service/" /><title>Customer Service</title><prepare>true</prepare></action> 
</reference> 
+0

我想你的建議,並沒有奏效。引用名稱「footer_links2」是默認引用名稱。沒有什麼改變。然而,我用你的建議代碼嘗試了'footer_links'和'footer_links2',但都沒有成功。還有其他建議嗎? – Sarah

+0

你可以檢查來自xml或靜態塊的默認鏈接嗎? – SimBeez

+0

它來自.xml。我試着先改變靜態塊,沒有發生任何事情,它不顯示「我的賬戶」或「訂單和退貨」鏈接。 – Sarah

相關問題