Thu. Jul 4th, 2024

23. Magento. How to set number of columns in category listing (for Magento 1.8.x+ templates)

1 min read
  1. Using your file manager, go to app/design/frontend/default/themeXXX/layout/catalog.xml file:

    magento_column_1

  2. Here, we can set number of columns for Anchor and/or non-Anchor categories.
  3. Find the following code:
    1
    <action method=”setColumnCount”><columns>3</columns></action>

    magento_column_2

  4. Change it to the following:
    1
    <action method=”setColumnCount”><columns>4</columns></action>
  5. Save this file and upload to the server.
  6. Now open app/design/frontend/default/themeXXX/template/catalog/product/list.phtml file:
    magento_column_3
  7. We need to edit the code for “Grid Mode”.
  8. Under the “products-grid row” class, find the following code: col-xs-12 col-sm-4:
    magento_column_4
  9. Change it to: col-xs-12 col-sm-3.
  10. Save this fie and upload to the server.
  11. Reload your site to see the changes.

Thank you for reading this video tutorial. Now you know how set number of columns in category listing in Magento template(s).

July 2024
M T W T F S S
« Jun    
1234567
891011121314
15161718192021
22232425262728
293031