如果用户未登录,如何隐藏部分页脚链接?
谢谢。
答案 0 :(得分:3)
如果已登录,请创建一个包含要隐藏的链接的新静态块。
将其插入您的CMS页面:
{{block type="core/template" template="myfooterlinks.phtml"}}
myfooterlinks.phtml里面会存在:
<?php if(Mage::getSingleton('customer/session')->isLoggedIn()): ?>
Your links here
<?php endif; ?>
答案 1 :(得分:1)
在local.xml(在package / design / layout /文件夹中)中,您可以使用特殊句柄customer_logged_out
,例如:
<customer_logged_out>
<remove name="name_of_block_to_remove"></remove>
</customer_logged_out>