它可以是混亂,頁腳鏈接我的Magento兩種方式之一生成:
1 )通過XML佈局添加,這是如何添加站點地圖鏈接等,例如:
contacts.xml
<reference name="footer_links">
<action method="addLink" translate="label title" module="contacts" ifconfig="contacts/contacts/enabled">
<label>Contact Us</label>
<url>contacts</url>
<title>Contact Us</title>
<prepare>true</prepare></action>
</reference>
您可以添加更多類似這樣的,或註釋掉刪除
他們正在使用的是啓用了一個標準的模板文件(模板/網頁/模板/ links.phtml)生成的每個環節配置如下。上面的每個鏈接定義(在不同的XML配置中有多個)將使用下面的模板來顯示實際的HTML鏈接。
page.xml
<block type="page/html_footer" name="footer" as="footer" template="page/html/footer.phtml">
<!-- uncomment this to ditech them.. -->
<block type="page/template_links"
name="footer_links" as="footer_links"
template="page/template/links.phtml" />
</block>
2)你會發現一個名爲footer_links靜態塊,還包括一些鏈接,這是爲了讓您更容易添加自己的鏈接。他們在裏面
cms.xml
<reference name="footer">
<block type="cms/block" name="cms_footer_links" before="footer_links">
<!--
The content of this block is taken from the database by its block_id.
You can manage it in admin CMS -> Static Blocks
-->
<action method="setBlockId"><block_id>footer_links</block_id></action>
</block>
</reference>
兩種方法用於產生可能會造成混淆:)
你嘗試過** **添加一個'links.phtml' **的**'應用程序/設計/前端/ website.com/defaul註釋掉塊T /模板/頁/'?它可能只是恢復到默認/默認是我的猜測,因爲它不存在。 – Zak 2013-02-18 22:58:07
nope我找不到它在默認/默認也是,並且鏈接已經在那裏我只需要找到它並改變它的東西就可以了 – jarus 2013-02-18 23:09:50