WooCommerce Lightbox

Hi,

I am using WooCommerce for E-Commerce Website and in the product page I want the product gallery to be like http://demo.theme.co/shop-integrity/product/happy-ninja/ but the Product Gallery is different here

I want it same exactly like the one like demo for the product gallery

Hi,

Sorry, the one on the demo has the old version of woocommerce.

Woocommerce has made some changes on the latest version like the zoom feature.

To make it the same as demo, you can add the code below in your child theme’s functions.php file.

add_filter( 'after_setup_theme', 'remove_new_wc_features', 99 );

function remove_new_wc_features() {
    remove_theme_support( 'wc-product-gallery-zoom' );
    add_theme_support( 'wc-product-gallery-lightbox' );
    remove_theme_support( 'wc-product-gallery-slider' );
}

Hope that helps.

I have added the script but still the Light box does not look good is there way to do something like http://demo.theme.co/shop-integrity/product/happy-ninja/

Hi there,

Unfortunately, that section of the lightbox is completely different in the old and new version of the Woocomemrce plugin and it is out of our hands. We can not do anything about it.

Here is the section which is possible to change:

Thank you for your understanding.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.