我正在使用Magento 1.7.0.2,并希望仅在客户退出时显示一些链接。
如果我将以下代码添加到local.xml,则没有任何反应(我已注销):
<customer_logged_out>
<reference name="top.links">
<action method="addLink" translate="label title" module="customer"><label>Test</label><url helper="customer/getLoginUrl"/><title>Test</title><prepare/><urlParams/><position>100</position></action>
</reference>
<remove name="reorder"></remove>
</customer_logged_out>
但是,只要我删除了customer_logged_out标记,就会显示链接(适合所有人),即:
<reference name="top.links">
<action method="addLink" translate="label title" module="customer"><label>Test</label><url helper="customer/getLoginUrl"/><title>Test</title><prepare/><urlParams/><position>100</position></action>
</reference>
<remove name="reorder"></remove>
如果我尝试使用customer_logged_in标签,也不会显示任何内容。
为什么这些logged_in / logged_out标记在local.xml中不起作用?