Home Forums Basel support forum Display more than 3 thumbnail on single product vertical layout

Display more than 3 thumbnail on single product vertical layout

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #25110

    milo_man18
    Participant

    Hiya, how to have 6 thumbnails to be displayed instead of 3 on the single product vertical layout?

    #25141

    Artem Temos
    Keymaster

    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

Tagged: 

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