Home Forums WoodMart support forum Number of columns of cross sell products in the cart page

Number of columns of cross sell products in the cart page

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #194342

    abbyrockas
    Participant

    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.

    #194369

    Artem Temos
    Keymaster

    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

    #194393

    abbyrockas
    Participant

    Thanks, that works!
    Is it possible to make the carousel bordered?

    #194398

    abbyrockas
    Participant

    I mean to add borders between the products in the grid/carousel

    #194514

    Artem Temos
    Keymaster

    Sorry, but there is no such style for that carousel.

Viewing 5 posts - 1 through 5 (of 5 total)