Home Forums Pro Themes Travel Eye Pro Woocommerce Product gallery lightbox

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #53609
    Paul614724
    Participant

    Please can you tell me how to get the lightbox working correctly for product image and gallery

    #53610
    Paul614724
    Participant
    #53620
    wensolutions
    Keymaster

    Hello @paul614724,

    As currently there is no light box feature included in the theme you have to add below given code in your child theme functions.php file .

    You can even activate the child theme using the plugin given below :

    https://wordpress.org/plugins/wp-child-theme-generator/

    After activating the child theme in your child themes functions.php file please add below given code.

    add_action( 'after_setup_theme', 'travel_eye_pro_setup' );
     
    function travel_eye_pro_setup() {
        add_theme_support( 'wc-product-gallery-zoom' );
        add_theme_support( 'wc-product-gallery-lightbox' );
        add_theme_support( 'wc-product-gallery-slider' );
    }

    Hope this helps .

    Best Regards!!

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.