inovve

Add Login & Logout links to Magento Top Links automatically

Nov 13th, 2014
291
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. <?php if (! Mage::getSingleton('customer/session')->isLoggedIn()): ?>
  2. <a href="<?php echo Mage::helper('customer')->getLoginUrl(); ?>"><?php echo $this->__('Login') ?></a>
  3. <?php else: ?>
  4. <a href="<?php echo Mage::helper('customer')->getLogoutUrl(); ?>"><?php echo $this->__('Logout') ?></a>
  5. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment