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
}
}
Our theme is built with Bootstrap framework and it doesn’t support 5 columns. Visual Composer rows works in the same way and doesn’t have 5 columns grid as well. Sorry, we can’t change it without additional PHP and CSS customization.