Ben Magento mağaza benim menü öğeleri görüntüler top.phtml bu kodu var:
<div class="header-nav-container">
<div class="header-nav">
<h4 class="no-display"><?php echo $this->__('Category Navigation:') ?></h4>
<ul id="nav">
<li <?php if(!Mage::registry('current_category')) { echo 'class="level0 active"'; } else { echo 'class="level0"'; } ?>><a href="<?php echo $this->getUrl('') ?>"><span><?php echo $this->__('Home') ?></span></a></li>
<?php foreach ($this->getStoreCategories() as $_category): ?>
<?php echo $this->drawItem($_category) ?>
<?php endforeach ?>
<li <?php if(!Mage::registry('current_category')) { echo 'class="level0 active"'; } else { echo 'class="level0"'; } ?>><a href="<?php echo $this->getUrl('catalogsale')?>"><span><?php echo $this->__('Sale Items') ?></span></a></li>
</ul>
</div>
Ben başka bir sayfa görüntüler altındaki ekstra bir li
var. Ben sorun ben 'Satış Item' sayfasını tıklayın oluşur: kendi link aktif olur ama çok ana sayfa bağlantısını yapar. Nasıl aktif görünmesini ana sayfa linki önleyebilir?
I’ve added a screenshot to show the problem: Screenshot