Magento – Show all products in a list not grid

list.phtmlmagento-1.9product-listproducts

I want to show all products, stacked in a nice list, one on top of each other.

I am using {{block type="catalog/product_list" name="home.catalog.product.list" alias="products_homepage" template="catalog/product/list.phtml"}} but it is showing the items as a grid because list.phtml is what my category uses to display products.

How can I just get a list:

  • product 1
  • product 2
  • product 3

etc. ?

Best Answer

There are two options to do that.

  1. This Change will also apply to All Product Listing pages

    Set it from Admin Panel => System-> Configuration -> Catalog -> Catalog -> FrontEnd -> ListMode = Set it to List(Default)/ Grid

  2. This Change will apply only on your block page

    You can copy content catalog/product/list.phtml in your custom file Remove Code related to Grid Mode and use to call in your block.

i wish it could help...

Related Topic