Home Forums WoodMart support forum Information Box Carousel Mobile Reply To: Information Box Carousel Mobile

#382454

Luke Nielsen
Keymaster

Hello,

With the help of the below code, you can change the number of items on the mobile view, just set the appropriate value for the “mobile” attribute. Paste it to the functions.php file in your child theme.

https://monosnap.com/file/5leAxUEvy8aBlnym8E7Sf9I645Ofm0

add_filter('woodmart_info_box_shortcode_custom_sizes',
   function() {
      return array(
         'desktop'          => 6,
         'tablet_landscape' => 4,
         'tablet'           => 3,
         'mobile'           => 1,
      );
   }
);

Also, this code will affect all infoboxes on your website.

In case you need any additional help, I’d be more than happy to assist you

Kind Regards