I m new in magento and i need to display categories as heading and the list all products under this category. Somehow I got some relevant code while googling but it is not working. Could display categories as heading but cannot display its corresponding products. I will provide the code which i used to display the categories and products.
<?php
$category = Mage::getModel('catalog/category');
$tree = $category->getTreeModel();
$tree->load();
$ids = $tree->getCollection()->getAllIds();
$arr = array();
if ($ids){
foreach ($ids as $id){
$cat = Mage::getModel('catalog/category');
$cat->load($id);
if ($cat->getIsActive()) {
$arr[$id] = $cat->getName();
$arr[$catId] = $cat->getId();
?>
<div class="right">
<div class="products">
<h2 class="head"><?php echo $arr[$id]; ?></h2>
<?php
$catagory_model = Mage::getModel('catalog/category')->load($id); //where $category_id is the id of the category
$collection = Mage::getResourceModel('catalog/product_collection');
$collection->addCategoryFilter($catagory_model); //category filter
$collection->addAttributeToFilter('status',1); //only enabled product
$collection->addAttributeToSelect(array('name','url','small_image')); //add product attribute to be fetched
//$collection->getSelect()->order('rand()'); //uncomment to get products in random order
$collection->addStoreFilter();
if(!empty($collection))
{
foreach ($collection as $_product):
?>
<div class="pro-list">
<h5><?php echo $_product->getname(); ?></h5>
<!-- other product details -->
</div>
<?php
endforeach;
}else
{
echo 'No products exists';
}
?>
</div>
</div>
<?php }
}
}
?>
what I am doing wrong? The code is written in template/catalog/product/list.phtml Can someone pls help and explain how to do it.