Number of columns of cross sell products in the cart page
-
Can I change the number of columns of cross-sell products in the cart page?
Currently, it shows 4 products maximum. I need to set it to show 6 at the same time.
Hello,
Try to add the following PHP code snippet to the child theme functions.php file to do this
add_filter(
'woodmart_cross_sells_products_per_view',
function() {
return 6;
}
);
Regards
Thanks, that works!
Is it possible to make the carousel bordered?
I mean to add borders between the products in the grid/carousel
Sorry, but there is no such style for that carousel.