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?
$this->getUrl('')
– tpbowden