Tagged: woocommerce
Hi team, I have Enfold 4.3.1 and woocommerce 3.3.5. How can I upate product (and category) column count from 3 to 4?
I have tried the following which seems to update the column count, but obviously needs some updated CSS because it breaks the layout.
// Change number or products per row to 4
add_filter('loop_shop_columns', 'my_loop_columns', 99);
function my_loop_columns() {
return 4; // 4 products per row
}
Thanks for the great theme.
Cheers