Magento顶部链接“注销”链接有时不显示

Magento顶部链接“注销”链接有时不显示,magento,Magento,当我登录时,有时我的注销链接显示在顶部链接部分,有时不显示 似乎取决于特定的会话,即如果我关闭浏览器并稍后返回,它可能就在那里。我知道很奇怪 这段代码位于my customer.xml中,它有时似乎可以工作 <!-- Load this update on every page when customer is logged in --> <customer_logged_in> <reference name="top.links">

当我登录时,有时我的注销链接显示在顶部链接部分,有时不显示

似乎取决于特定的会话,即如果我关闭浏览器并稍后返回,它可能就在那里。我知道很奇怪

这段代码位于my customer.xml中,它有时似乎可以工作

<!--
Load this update on every page when customer is logged in
-->

    <customer_logged_in>
        <reference name="top.links">
            <action method="addLink" translate="label title" module="customer"><label>Log Out</label><url helper="customer/getLogoutUrl"/><title>Log Out</title><prepare/><urlParams/><position>100</position></action>
        </reference>
    </customer_logged_in>

<!--
Load this update on every page when customer is logged out
-->

    <customer_logged_out>
        <!---<reference name="right">
            <block type="customer/form_login" name="customer_form_mini_login" before="-" template="customer/form/mini.login.phtml"/>
        </reference>-->
        <reference name="top.links">
            <action method="addLink" translate="label title" module="customer"><label>Log In</label><url helper="customer/getLoginUrl"/><title>Log In</title><prepare/><urlParams/><position>100</position></action>
        </reference>
        <remove name="reorder"></remove>
    </customer_logged_out>
我想稍后在加载链中可能会有什么内容覆盖了它,但我找不到任何删除此链接的引用

我还将这段代码添加到一个local.xml文件中,该文件应该在最后加载。。那里运气不好


有什么想法吗?我正在使用Magento 1.6.1社区。在我看来,这可能是一个错误,基于不稳定的行为模式

我无法在这里发布这个片段,因为它太多了,但这里是你的答案。

我看不到注销,从来没有。