Reputation: 3
I am trying to add a homepage link to the main menu of Magento. I have modified top.phtml in my template/catalog/navigation and added the line
<li>
<a href="<?php echo $this->getUrl('') ?>"><?php echo $this->__('Home'); ?></a>
</li>
between the <ul>
's but it doesn't work?
Upvotes: 0
Views: 6785
Reputation: 17656
Try
<li>
<a href="<?php echo Mage::helper('core/url')->getHomeUrl(); ?>"><?php echo $this->__('Home'); ?></a>
</li>
Then flush cache if any
Upvotes: 4
Reputation: 2018
Try using this. It will return the base url of your site.
<?php echo Mage::getBaseUrl(); ?>
Upvotes: 0