Home › Forums › WoodMart support forum › Increase the number of product thumbnails/ Увеличить кол. миниатюр товара › Reply To: Increase the number of product thumbnails/ Увеличить кол. миниатюр товара
January 5, 2022 at 3:13 pm
#343609

Luke Nielsen
Keymaster
Hello,
In order to display 10 thumbnail images, try adding the below code to the functions.php file in your child theme.
add_filter(
'woodmart_product_gallery_settings',
function() {
return array(
'images_slider' => woodmart_is_main_product_images_carousel(),
'thumbs_slider' => array(
'enabled' => woodmart_is_product_thumb_enabled(),
'position' => woodmart_get_opt( 'thums_position' ),
'items' => array(
'desktop' => 10,
'tablet_landscape' => 3,
'tablet' => 4,
'mobile' => 3,
'vertical_items' => 3,
),
),
);
}
);
Later you can change the number of pictures by setting another value for the “desktop” field (https://prnt.sc/2651z4q).
If you have other concerns or additional questions, please don’t hesitate to reach out to our customer service team.
Kind Regards