Hi guys,
Fell in love with this theme
Just wondering - what's the best way going about putting the products on the category pages onto 4 columns as opposed to 3.
Thanks for your time.
// Display 9 products per page.
add_filter( 'loop_shop_per_page', create_function( '$cols', 'return 9;' ), 20 );
// Change number or products per row to 3
add_filter('loop_shop_columns', 'loop_columns');
if (!function_exists('loop_columns')) {
function loop_columns() {
return 3; // 3 products per row
}
}