Question: Show three columns as default

Show three columns as default

Hello, I wanted to know if the products can be shown in three columns by default. It currently shows two columns by default. Thank you

MD

Martin Devlin

Asked
Hello, I wanted to know if the products can be shown in three columns by default. It currently shows two columns by default.
Thank you
  • MS

    Mian Saleem

    Answered
    Hello,

    There is no option by settings. You will need to add the following code in shop footer `themes/default/shop/views/footer.php` before closing body tag `</body>`

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

    Thank you
  • Login to Reply