-6
可能重複:
How to remove links from top.liknks when loggin in/out in Magento 1.6.2Magento的:如何隱藏登錄鏈接
當用戶登錄時,我想註冊鏈接被隱藏。任何人都可以指導我嗎?我對它很陌生。
該想到唯一的事情是Mage::getSingleton('customer/session')->getCustomer();
,但它不工作。
可能重複:
How to remove links from top.liknks when loggin in/out in Magento 1.6.2Magento的:如何隱藏登錄鏈接
當用戶登錄時,我想註冊鏈接被隱藏。任何人都可以指導我嗎?我對它很陌生。
該想到唯一的事情是Mage::getSingleton('customer/session')->getCustomer();
,但它不工作。
您需要使用佈局文件來解決這個使用<customer_logged_in>
標籤。
有你customer.xml一看,你通常會有:
<customer_logged_in>
<reference name="topLinks">
<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>
和<customer_logged_out>
等效。這應該引導你到你需要的地方。
如果你真的想這樣做在phtml
文件,再看看
$this->helper('customer')->isLoggedIn();