Monday 27 August 2018

How to show category image full width on catalog page.

Go any phmtl page like 2columns-left.phtml pur after breadcrumbs below code.

$_category  = Mage::registry('current_category');
        if($_category){
        $_helper    = Mage::helper('catalog/output');
         $_imgHtml   = '';
           if ($_imgUrl = $_category->getImageUrl()) {
           echo   $_imgHtml = '<div class="category-image-container1"><div class="category-image-container-inner"><p class="category-image"><img src="'.$_imgUrl.'" alt="'.$this->htmlEscape($_category->getName()).'" title="'.$this->htmlEscape($_category->getName()).'" /></p></div></div>';
                $_imgHtml = $_helper->categoryAttribute($_category, $_imgHtml, 'image');
               
            }