Home Forums WoodMart support forum Changing the infobox carousels items’ numbers per row Reply To: Changing the infobox carousels items’ numbers per row

#327524

Hello,

Please add this code to the functions.php file of the child theme:

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

This code would apply to all the Infobox carousels.

Best Regards