Site logo

Archived topic

Woo 3 products per row

7 replies · Started by MaksymPS on February 10, 2016

Viewing posts 1–8 of 8

Hi Tom,

Is there any way to add 3 products in WooCommerce like here ?

I have found a code, but it doesn;t work well.

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

http://piccy.info/view3/9390099/1865370692a14ee65b957aa8492706ff/orig/

Thanks Tom!

Best regards

That should do it - any chance you can link me to that page?

Hmm, not sure why their code isn't working.

You can do it with some CSS as well:

.woocommerce ul.products li.product, 
.woocommerce-page ul.products li.product {
    float: left;
    margin: 0 3% 2.992em 0;
    width: 30%;
}

Looks like you want to do something like this:

@media (max-width: 768px) {
    .woocommerce ul.products li.product, 
    .woocommerce-page ul.products li.product {
        width: 100%;
        margin-right: 0;
    }
}

Tom,

Perfect!
Thank you very much! :)

You're welcome :)

This archived topic is closed to new replies.