<?php $_categories=$this->getCurrentChildCategories()?>
<?php $_collectionSize=count($_categories); ?>
<div>
<?php $i=0; foreach($_categories as $_category): ?>
<?php $layer = Mage::getSingleton('catalog/layer');
$layer->setCurrentCategory(Mage::getModel('catalog/navigation')->load($_category->getId()));
$helper = Mage::helper('catalog/navigation');
?>
<div>
<?php $_img=$this->getCurrentCategory()->getImageUrl()?>
<?php if($_img): ?>
</div>
<a href="<?php echo $helper->getCategoryUrl($_category);?>">
<img src="<?php echo $_img?>" title <?php echo $_category -> getName() ?> "/>
</a>
</div>
<?php endif; ?>
<div>
<a href="<?php echo $_category->getURL()?>" title="<?php echo $this->htmlEscape($_category->getName())?> ">
<?php echo $this->htmlEscape($_category->getName())?>
</a>
</div>
</div>
<?php $i++;
endforeach;
?>
</div>
Asked
Active
Viewed 26 times
1
Manoj Deswal
- 5,785
- 25
- 27
- 50
Sohan Singh
- 33
- 8
-
Hello @SohanSingh, welcome! Where did you add this? – Christoph Farnleitner Jan 19 '18 at 13:30