PV
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?
- MSAnsweredHello,
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 - PVAnsweredThank you I got it
- Login to Reply