Site logo

Archived topic

Customize woocomerce layout

3 replies · Started by Thierry on September 12, 2016

Viewing posts 1–4 of 4

Hello,

On my page category Woocommerce i want display the product with list (and not grid) without thumbails, how i can do this ?

Thx

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.

It's good for this. Thx Tom.

You're welcome :)

This archived topic is closed to new replies.