Home Forums Basel support forum Product last image

Product last image

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #28998

    hussnainchee
    Participant

    Hi.

    Thanks for the great theme.

    I have small images of product at the side of large product image on a single product page.
    The first three images are visible in the view and fourth one is not.

    I want to make the fourth picture visible when user clicks the third image to make it active thumb.

    How can i achieve this?

    Thanks

    #29043

    Artem Temos
    Keymaster

    Hello,

    Sorry, but the library we are using for the vertical carousel doesn’t have such feature. It can show the second slide (includes 3 images) only if you have at least 2 images to show (hidden). If you have only 1 image hidden it will not slide to the next 1 image. Unfortunately, we are not able to change this behavior in our theme.

    Regards

    #29062

    hussnainchee
    Participant

    Hi. Thanks for the reply.
    But there must be way in the code to change to show even when only 1 image is hidden.

    #29065

    Artem Temos
    Keymaster

    We are sorry but we don’t have an instruction for this task.

    #29087

    hussnainchee
    Participant

    Thanks for the reply.

    I have 4 product images. Only 3 are visible.
    I want all 4 to be visible on screen.
    How can I achieve that?

    Please see the attached image.

    Attachments:
    You must be logged in to view attached files.
    #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' );

Tagged: 

Viewing 6 posts - 1 through 6 (of 6 total)