Search This Blog

Monday, May 7, 2012

Code for Magento Category display at any other place in the site..


<ul>
               <?php
 $h3h3=Mage::getModel('catalog/category')->getCollection();
foreach($h3h3 as $cat){
               
$cata=Mage::getModel('catalog/category')->load($cat->getEntityId());
if($cat->getEntityId() != 1 && $cat->getEntityId() != 2){
                                echo "<li><a href='".$cata->getUrl()."'>".$cata->getName()."</a></li>";
}
}
?>
</ul>
Just copy and paste and get the category listed….
For more information checkout our official website.

No comments:

Post a Comment