Kod: Zaznacz cały
<li><a href="<?php echo $this->getUrl() ?>"><?php echo $this->__('Home') ?></a></li>
<li onmouseover="toggleMenu(this,1)" onmouseout="toggleMenu(this,0)">
<a href="<?php echo $this->getUrl('') ?>"><?php echo $this->__('Products') ?></a>
<ul>
<?php foreach ($this->getStoreCategories() as $_category): ?>
<?php echo $this->drawItem($_category) ?>
<?php endforeach ?>
</ul>
</li>
<!-- kategoria posciel --->
<li onmouseover="toggleMenu(this,1)" onmouseout="toggleMenu(this,0)">
<a href="<?php echo $this->getUrl('poduszki.html') ?>"><?php echo $this->__('Poduszki') ?></a>
</li>
<li onmouseover="toggleMenu(this,1)" onmouseout="toggleMenu(this,0)">
<a href="<?php echo $this->getUrl('posciel.html') ?>"><?php echo $this->__('Pościel') ?></a>
</li>
<li onmouseover="toggleMenu(this,1)" onmouseout="toggleMenu(this,0)">
<a href="<?php echo $this->getUrl('na-zamowienie.html') ?>"><?php echo $this->__('Pościel na zamówienie') ?></a>
</li>
Kategoria 'Pościel' ma podkategorie które chciałbym wyświetlić po najechaniu na button. Kategoria 'Products' wyświetla podkategorie za pomocą getStoreCategories ale mi są potrzebne tylko i wyłącznie podkategorie konkretnej kategorii.
Znalazłem w kodzie też taki fragment:
Kod: Zaznacz cały
<?php echo $this->getChildHtml('topLeftLinks') ?>
no i to zapewne jest to czego szukam, tylko jak to razem zgrać?