Woocommerce Product Columns
Hi there,
To gain advanced control over WooCommerce, you need a plugin like WooCommerce JetPack or StoreKit for Layers, which has a column count option.
http://codecanyon.net/item/storekit-woocommerce-for-layers/11223808
To do it without a plugin requires custom functions and some Custom CSS to reset all of the widths and clears. Keep in mind that WooCommerce is not part of Layers, so the place to look for documentation on custom functions for it is located here:
https://docs.woothemes.com/documentation/plugins/woocommerce/
I f you are looking for how to change the look of product archives in a child theme, you can do it with this:
https://docs.woothemes.com/document/change-number-of-products-per-row/
Hi,
Add this below code in child’s function.php file
add_filter( 'loop_shop_columns', 'wc_loop_shop_columns', 1, 10 );
/*
* Return a new number of maximum columns for shop archives
* @param int Original value
* @return int New number of columns
*/
function wc_loop_shop_columns( $number_columns ) {
return 3;
}