Hi,
I don’t find an option under theme settings to show 5 products per row. only 2, 3, 4 and 6. Why is this? How do I display 5 products which i currently need.
I also tried the code below and still then it displays 4. Please help:
// Change number or products per row to 5
add_filter(‘loop_shop_columns’, ‘loop_columns’);
if (!function_exists(‘loop_columns’)) {
function loop_columns() {
return 5; // 5 products per row
}
}
Thanks