Question

Am working on Magento 1 Store

I want to show only new products of particular category on a page. Suppose i have category of shirts so i want to show only 8 new products of that category on page.

i tried to use this block to show only category products but its not respecting the product limit.

{{block type="catalog/product_list" column_count="8" category_id="43" template="catalog/product/list.phtml"}}
Was it helpful?

Solution

Try this code:

{{block type="catalog/product_list" category_id="CATEGORY_ID" template="catalog/product/list.phtml" column_count="5" products_count="10"}}

Note : Replace CATEGORY_ID with numeric category id.

Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top