I want to limit the number of products of bestseller on homepage in magento.

here is the bock code which I have used to display the bestseller products on home page

{{block type="catalog/product_list" name="home.catalog.product.list"  alias="products_homepage" limt="2"  category_id="4template="catalog/product/bestseller.phtml"_ProductsCount="2"           _ColumnCount="2"}}

I had put limit but it is still not working. Please tell me what's the wrong!

link|improve this question
feedback

1 Answer

Have you tried num_products?

{{block type="catalog/product_list" num_products="2" column_count="2" template="catalog/product/bestseller.phtml"}}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.