如何在Magento 1.9.2中为联系人页面添加topmenu.phtml的类新链接?

时间:2015-09-18 05:45:34

标签: magento-1.9

如何在Magento 1.9.2中为联系人页面添加topmenu.phtml的类新链接?

<li><a href="<?php echo $this->getBaseURl() ?>contacts">CONTACTS</a></li>

1 个答案:

答案 0 :(得分:2)

您好关注belo代码可能会帮助您

<?php 
 $_currentUrl = Mage::helper('core/url')->getCurrentUrl();
 $_homeUrl = Mage::helper('core/url')->getHomeUrl();
?>
<li class="level0 nav-1 level-top <?php if ($_currentUrl === $_homeUrl.'contacts'):?> active<?php endif;?>"><a href="<?php echo $this->getBaseURl() ?>contacts"><?php echo  $this->__('CONTACT US') ?></a></li>