Question: Product grid in shop module

Product grid in shop module

I see that in default it shows the 2 columns grid, it looks terrible to me. can I change the default grid to 3 instead?

PV

Prom Vongchann

Asked
I see that in default it shows the 2 columns grid, it looks terrible to me. can I change the default grid to 3 instead?
  • MS

    Mian Saleem

    Answered
    Hello,

    You can edit the `themes/default/shop/views/footer.php` and add/uncomment these line at the end.

    ```
    <script>
    if(!get('shop_grid')) {
    store('shop_grid', '.three-col');
    }
    </script>
    ```

    Thank you
  • PV

    Prom Vongchann

    Answered
    Thank you I got it
  • Login to Reply