我不想在我的网站中添加顶部链接,但我想在topmenu.i中添加一个注销选项在topmenu中添加了一个注销选项,但它不起作用....所以如何在topmenu中使注销链接可用?如果有人知道这一点,请帮助我。 谢谢!
答案 0 :(得分:12)
使用它将100%工作,我多次使用
<?php if (Mage::helper('customer')->isLoggedIn() ): ?>
<a href="<?php echo Mage::helper('customer')->getLogoutUrl(); ?>"><?php echo 'Log OUT'; ?></a>
<?php
/*
else: ?>
<a href="<?php echo Mage::helper('customer')->getLoginUrl(); ?>">SIGN IN</a>
<?php
*/
endif; ?>
感谢
答案 1 :(得分:3)
这很简单。您可以在要添加此注销链接的phtml文件中添加以下代码。
<?php if (Mage::helper('customer')->isLoggedIn() ): ?>
<a href="<?php echo Mage::helper('customer')->getLogoutUrl(); ?>"><?php echo 'Log OUT'; ?></a>
<?php
/*
else: ?>
<a href="<?php echo Mage::helper('customer')->getLoginUrl(); ?>">SIGN IN</a>
<?php
*/
endif; ?>