Comments jduron started the conversationAugust 22, 2020 at 5:14amI'd like to change the number of products displayed per row on the shop page. It seems to be defaulting to 3 per row and 12 per page. I'm wanting to increase the number per row and per page. Thank you 7,092Oliver repliedAugust 24, 2020 at 9:35amHi,pls. give me link to the page with the block, I need to see the style you're using.Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. Regards, Oliver jduron replied privately 7,092Oliver repliedAugust 25, 2020 at 9:40amHi,1. Add this CSS code: @media (min-width: 768px) { .products.inline-row .product.inline-column.col-sm-4 { width: 25%; min-width: auto !important; } } 2. Add this code to the functions.php of the child theme: add_filter( 'loop_shop_per_page', 'new_loop_shop_per_page', 20 ); function new_loop_shop_per_page( $cols ) { $cols = 12; return $cols; } Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. Regards, Oliverjduron repliedAugust 26, 2020 at 11:26pmBrilliant! Thank you, this solved my issue. 7,092Oliver repliedAugust 27, 2020 at 9:45amYou're welcome!Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. Regards, Oliver Sign in to reply ...
I'd like to change the number of products displayed per row on the shop page. It seems to be defaulting to 3 per row and 12 per page. I'm wanting to increase the number per row and per page.
Thank you
Hi,
pls. give me link to the page with the block, I need to see the style you're using.
Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list.
Regards, Oliver
Hi,
1. Add this CSS code:
2. Add this code to the functions.php of the child theme:
Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list.
Regards, Oliver
Brilliant!
Thank you, this solved my issue.
You're welcome!
Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list.
Regards, Oliver