Magento – Categories Images
Posted on: April 29, 2012 /
Categories: Magento
Get category image:
<?php
$_category = $this->getCurrentCategory();
$_imageUrl = $this->getImageUrl();
?>
Get category thumbnail:
<?php
$_category = $this->getCurrentCategory();
$_imageUrl = $this->getThumbnail();
?>