Oh wow that is around 3 years old!
In the child theme create this folder woocommerce
.
Inside that new folder copy and paste these two files from the parent theme:
– archive-product.php
– content-product.php
Inside those two files you can then change both the columns counts:
if ( empty( $woocommerce_loop['columns'] ) ) {
global $sidebars;
$columns = 5;
if ( $sidebars == "no-sidebars" || is_singular('portfolio') ) {
$columns = 5;
} else if ( $sidebars == "both-sidebars" ) {
$columns = 3;
} else {
$columns = 4;
}
$woocommerce_loop['columns'] = $columns;
}
When you change the column counts in the PHP files, you must then update the CSS to reflect the new columns. So 4 columns + a sidebar would be (i’ve added this to your Theme Options):
@media only screen and (min-width: 1200px)
body.woocommerce .has-one-sidebar ul.products li.product {
width: 195px;
}
}
body.woocommerce .has-one-sidebar ul.products li.product {
width: 160px;
}