我更改了magento中的local.xml文件并重新排列了主题的顶部链接并更新了文件并将其上传到服务器上..但是我所做的更改没有出现在网站上..
我还清除了缓存的文件夹,但它仍无法正常工作..
任何人都可以告诉我这将如何在网站上更新。或者我必须做什么...
我添加的块是:
<reference name="wishlist_link">
<action method="setTemplate" ifconfig="fortis/header/top_links_icons">
<template>page/template/linksblock_icons.phtml</template>
</action>
</reference>
路径:
\app\design\frontend\fortis\default\layout\layout.xml
答案 0 :(得分:0)
wishlist链接的位置由位于app / code / design / frontend / template / yourtemplate / layout / local.xml中的local.xml文件控制。 搜索:wishlist并找到:
<customer_account>
<!-- Mage_Wishlist -->
<reference name="customer_account_navigation">
<action method="addLink" translate="label" module="wishlist" ifconfig="wishlist/general/active"><name>wishlist</name><path>wishlist/</path><label>My Wishlist</label></action>
</reference>
</customer_account>
使用<before="-">
或<after="-">
,您可以控制相对于其他链接的链接位置。