Home › Forums › WoodMart support forum › Changing the infobox carousels items’ numbers per row › Reply To: Changing the infobox carousels items’ numbers per row
October 25, 2021 at 11:34 pm
#327524
Elise Noromit
Member
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