WooCommerce LighBox Gallery Suppot

Posted in: Newspaper
Post count: 7

Hello!

It seems as though lightbox galleries do not work with WooCommerce products on this theme.

https://createandcode.com/broken-photo-gallery-and-lightbox-after-woocommerce-3-0-upgrade/

According to the above link, I should be requesting the integration here.

Post count: 20688

Hi,

That should still work, the woocommerce authors changed the functionality a while back. Now you have to enter the code provided in that page in the theme or child theme functions file
http://prntscr.com/mxaa3a
If you only want the lightbox remove the other lines – http://prntscr.com/mxaaeu
Then the product images will open in the woocommerce lightbox
http://prntscr.com/mxaav6http://prntscr.com/mxab1y

Thanks

Post count: 7

You are correct, added

add_action( ‘after_setup_theme’, ‘yourtheme_setup’ );

function yourtheme_setup() {
add_theme_support( ‘wc-product-gallery-zoom’ );
add_theme_support( ‘wc-product-gallery-lightbox’ );
add_theme_support( ‘wc-product-gallery-slider’ );
}

to Funtions.php and it is working.

Thanks!

Viewing 3 posts - 1 through 3 (of 3 total)
The forum ‘Newspaper’ is closed to new topics and replies.