Hello guys,
What and where I need to change to do this:
Widget on the left: WooCommerce Layered Nav
Im using StoreBox 1.3.3 on WP 3.9.1
Thank you in advance!
add_filter('loop_shop_columns', 'loop_columns');
if (!function_exists('loop_columns')) {
function loop_columns() {
return 3; // 3 products per row
}
}
.woocommerce .widget_layered_nav ul li,
.woocommerce-page .widget_layered_nav ul li {
font-size: 15px;
line-height: 1.4;
}
Piotr Kunicki wrote:Could you please provide me with a URL to your website, either here or via PM (click the “Private Message” text underneath my avatar) so that I may analyze it? It is a lot easier for us to diagnose issues when we have a live site to examine.
Regarding the numbers of products per row, you have to edit StoreBox/gavern/wc-functions.php file and change this filter:
- Code: Select all
add_filter('loop_shop_columns', 'loop_columns');
if (!function_exists('loop_columns')) {
function loop_columns() {
return 3; // 3 products per row
}
}
use your own value instead of: return 3;