|
Hi
Upgraded successfully to 1.7.0.
However, noticed that my home button is now gone (it was working in 1.6.2 before I upgraded to 1.7.0)
In my template that I used, there is already this code in top.phtml in app/design/frontend/default/yourtheme/template/catalog/navigation/top.phtml
<?php
/**
* Top menu for store
*
* @see Mage_Catalog_Block_Navigation
*/
?>
<?php $_menu = ''?>
<?php foreach ($this->getStoreCategories() as $_category): ?>
<?php $_menu .= $this->drawItem($_category) ?>
<?php endforeach ?>
<?php if ($_menu): ?>
<div class="nav-container">
<ul id="nav">
<li><a href="<?php echo $this->getUrl('') ?>"><?php echo $this->__('Home'); ?></a></li>
<?php echo $_menu; ?>
</ul>
</div>
<?php endif; ?>
Is this a bug in 1.7.0?
|