Magento 1.9 – How to Display Products on Home Page

magento-1.9product

Here are my questions
1.) How to display products of specific category?
2.) How can I organize the way it is displayed? (column, size, row, etc) ?

Hi. I have tried almost all the tutorials in google but I failed to display products in my Home Page. Although displaying "all products" is not working, the displaying of new items works fine. This is what I did so far.

This is the line of code which works:

{{block type="catalog/product_new" name="home.catalog.product.list" template="catalog/product/new.phtml"}}

Though the code above works, the way it displays the product is not right.

This line of code doesn't work:

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

Yes, I have tried clearing the cache as well. Also, I am using Magento 1.9.2.3.

UPDATE:
After following the instruction, something was displayed:
enter image description here

Although something was displayed on my homepage, this is not how I expect the products to be displayed. Why does it display like this ?

Best Answer

As you have using magento c.E 1.9 version and this version already applied magento patch SUPEE-6788.

So,you need to remove catalog/product_list from white list

  1. System > Permissions > Blocks
  2. Add New Block
  3. Block Name: catalog/product_list
  4. Is Allowed : Yes
Related Topic