Home › Forums › Basel support forum › Product last image › Reply To: Product last image
December 15, 2017 at 2:06 pm
#29094
Artem Temos
Keymaster
Try to add the following PHP code snippet to the child theme functions.php file to do this
function basel_vertical_images( $array ){
$array['thumbs_slider']['items']['vertical_items'] = 4;
return $array;
}
add_filter( 'basel_product_gallery_settings', 'basel_vertical_images' );