Skip to main content

Display current category description in any page of magento

display current category description in any page of magento



<?php $cat Mage::registry('current_category'); echo $cat->getDescription(); ?>

Comments

Popular posts from this blog

Fixing a Compiler Error in Magento

Fortunately the compiler is quite easy to manually disable. This will resolve the compiler issue and allow you to access your Magento Admin so that you can re-compile before enabling the compiler again. Access your Magento website using FTP and open the file /includes/config.php . You should see the following code: ------------------------------------------------------------------------------------------------------- define ( 'COMPILER_INCLUDE_PATH' , dirname ( __FILE__ ) . DIRECTORY_SEPARATOR . 'src' ) ; define ( 'COMPILER_COLLECT_PATH' , dirname ( __FILE__ ) . DIRECTORY_SEPARATOR . 'stat' ) ; ------------------------------------------------------------------------------ This code tells Magento where to look for the compiled files. To disable the compiler, simply comment out these lines (add a '#' character to the start of each line). The result should look like the following: ------------------------------------------------...

Smooth Page Scroll Script

< script > $(function() { $('a[href*=#]:not([href=#])').click(function() { if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')  && location.hostname == this.hostname) { var target = $(this.hash); target = target.length ? target : $('[name=' + this.hash.slice(1) +']'); if (target.length) { $('html,body').animate({ scrollTop: target.offset().top }, 1000); return false; } } }); }); </ script >

Magento-local.xml-Template

<?xml version="1.0"?> <layout>         <!-- Add/Remove Items From Head -->     <default translate="label" module="page">     <reference name="head">         <!-- Add Javascript File -->                 <action method="addItem">         <type>skin_js</type>         <name>js/jquery.js</name>         <params/>         </action>         <!-- Add CSS File -->         <action method="addCss">         <stylesheet>css/local.css</stylesheet>         </act...