By default there is no Home link in Magento top navigation menu but you can easily add it yourself. 1- Copy following 2 files design/frontend/base/template/page/html/topmenu.phtml TO design/frontend/default/yourtheme/template/page/html/topmenu.phtml 2. Replace the content with following codeAdd Home link in Magento top navigation menu
Last modified
design/frontend/base/template/catalog/navigation/top.phtml
design/frontend/default/yourtheme/template/catalog/navigation/top.phtml
<?php $_menu = $this->getHtml('level-top') ?>
<?php if($_menu): ?>
<div class="nav-container">
<ul id="nav">
<!-- HOME BUTTON HACK -->
<?php $_anyActive = false; foreach ($this->getStoreCategories() as $_category) { $_anyActive = $_anyActive || $this->isCategoryActive($_category); } ?>
<li class="<?php echo !$_anyActive ? 'active' : '' ?>"><a href="<?php echo $this->getUrl('')?>"><?php echo $this->__('Home') ?></a></li>
<!-- HOME BUTTON HACK -->
<?php echo $_menu ?>
</ul>
</div>
<?php endif ?>
5 min read