MD
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
Thank you
- MSAnsweredHello,
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