How to dilsplay all poroduct of a category in home page in magento

72 views Asked by At

How can I display all products in home page in magento. I use this code but home page shows There are no products matching the selection.

{{block type="catalog/product_list" category_id="8" template="catalog/product/featured.phtml"}} 

Thanks in advance

2

There are 2 answers

0
Hardik On

Try this one...

{{block type="catalog/product_list" category_id="8" template="catalog/product/list.phtml"  columnCount="3"}}

For more info

0
Emipro Technologies Pvt. Ltd. On

You can use following in your home CMS page.

{{block type="catalog/product_list" category_id="7" template="catalog/product/list.phtml"}}

Where category_id is id of category from which products will be shown.