Sunday, 13 January 2013

To show current category's Subcatagory


<?php $_helper = Mage::helper('catalog/category') ?>
<?php $_categories = $_helper->getStoreCategories() ?>
<?php $currentCategory = Mage::registry('current_category') ?>
<?php if (count($_categories) > 0): ?>

        <?php foreach($_categories as $_category): ?>


                <?php if ($currentCategory->getId() == $_category->getId()): ?>
                    <?php $_category = Mage::getModel('catalog/category')->load($_category->getId()) ?>
                    <?php $_subcategories = $_category->getChildrenCategories() ?>
                    <?php if (count($_subcategories) > 0): ?>
<ul>
                            <?php foreach($_subcategories as $_subcategory): ?>
<li>
                                    <a href="<?php echo $_helper->getCategoryUrl($_subcategory) ?>">
                                        <?php echo $_subcategory->getName() ?>
                                    </a>
                                </li>
                        <?php endforeach; ?>
                        </ul>
                <?php endif; ?>
                <?php endif; ?>

     <?php endforeach; ?>

<?php endif; ?>

2 comments: