Okay
  Public Ticket #1385476
display 2 products on mobile screen (product carousel)
Closed

Comments

  •  1
    agentjulliard started the conversation

    For the product carousel, on mobile screen, is it possible to set it to display 2 products per row?

  • [deleted] replied

    Hi agentjulliard,

    Sorry but this option is not available for the moment. We will see if we can do something about this on our future theme updates.

  •  1
    agentjulliard replied

    Hi Ylli,

    I'm pretty sure it's possible. looking at the retailer theme, another popular theme like kalium, it seems easily done. Would you please help. maybe a custom code or something?

  • [deleted] replied

    Hi agentjulliard,

    You can add this code in functions.php:

    // Show 2 products in carousel on mobile screen size
    function carousel_two_rows_for_mobile( $columns, $screen_size ) {
    if ( 'mobile' == $screen_size ) {
    return 2;
    }

    return $columns;
    }

    add_filter( 'kalium_woocommerce_products_carousel_slides_to_show', 'carousel_two_rows_for_mobile', 10, 2 );
    This will show 2 products per row on products carousel.

  •  1
    agentjulliard replied

    Perfect! Thank you!

  • [deleted] replied

    Thats great. 

    Will close this ticket now.

    P.S: If you like our theme, it would help us a lot if you could give us five star rating on themeforest from your Downloads tab. A huge thank you from Laborator in advance!