Display more than 3 thumbnail on single product vertical layout
-
Hiya, how to have 6 thumbnails to be displayed instead of 3 on the single product vertical layout?
Hi,
Try to add the following code snippet to the functions.php file in the child theme to change this
add_filter( 'basel_product_gallery_settings', function(){
return array(
'images_slider' => ( basel_get_opt('product_design' ) != 'sticky'),
'thumbs_slider' => array(
'enabled' => true,
'position' => basel_get_opt('thums_position'),
'items' => array(
'desktop' => 6,
'desktop_small' => 5,
'tablet' => 4,
'mobile' => 3,
'vertical_items' => 3
)
)
);
} );
Regards