Reply To: Customize woocomerce layout

Home Forums Support Customize woocomerce layout Reply To: Customize woocomerce layout

Home Forums Support Customize woocomerce layout Reply To: Customize woocomerce layout

#225844
Tom
Lead Developer
Lead Developer

This PHP should make them 1 column:

add_filter('loop_shop_columns', 'loop_columns');
if (!function_exists('loop_columns')) {
	function loop_columns() {
		return 1; // 3 products per row
	}
}

I’m not sure of the best way to remove the thumbnails – you might want to ask WooCommerce support that one.