Home Forums Basel support forum Product last image Reply To: Product last image

#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' );