I have displayed all parent categories and sub-categories in the home page(left.phtml).
I want each sub-category to be a link which directs to a page where the products of that sub-category should be listed.
Nothing is working right now.
<?php $children = Mage::getModel('catalog/category')->getCategories($id); ?>
<ul
<?php foreach ($children as $category) { ?>
<li>
<a href="<?php echo Mage::getModel("catalog/category")->load($category->getId())->getUrl() ?>"><?php echo $category->getName() ?></a> (<?php echo $category->getProductCount() ?>)</li>
<?php } ?>
</ul>
<?php } ?>
When clicking on the sub-category, it gives page not found error. Also nothing is showing in the getProductCount. What link should be given inside of sub-categories or Where should this link be redirected to? From which phtml page the results are displayed. Found lot of posts and articles regarding display products with categories and sub-categories. But couldnt find a solution for my issue(may be lack of searching skill).
Any help will be highly appreciated.