Hi,
is there any settings to get more than just three columns of products as in WooCommerce Storefront customizer?
http://www.woothemes.com/products/store ... ustomiser/
cheers
linus
// 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
}
}
Fetelimpan wrote:Great, did the change:
// Change number or products per row to 4
add_filter('loop_shop_columns', 'loop_columns');
if (!function_exists('loop_columns')) {
function loop_columns() {
return 4; // 4 products per row
}
}
ul.products li.product {
width: 23.2%!important;
}