更改不更新local.xml上的顶部链接标题

时间:2015-06-12 08:06:29

标签: xml magento

我更改了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

1 个答案:

答案 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="-">,您可以控制相对于其他链接的链接位置。

参见http://merch.docs.magento.com/ce/user_guide/Magento_Community_Edition_User_Guide.html#cms/block-layout-order.html%3FTocPath%3DDesign%2520%2526%2520Theme%7CPage%2520Layout%7CLayout%2520Updates%7C_____2 有关这方面的更多信息。