• Resolved eyeswiseopen

    (@eyeswiseopen)


    Hi
    I need to disable the lightbox feature in Woocommerce on an Astra themed site
    I have tried many possibilities nothing disables it
    I added PHP snippets to function file in child theme
    I even tried to alter the option in class-astra-woocommerece.php
    I installed 2 plugins that add the options to either site-wide or per page
    NOTHING, but NOTHING gets read of it!

    Any suggestion would be much appreciated

Viewing 1 replies (of 1 total)
  • Plugin Author Brainstorm Force

    (@brainstormforce)

    Hello @eyeswiseopen,

    The Lightbox is actually added by the WooCommerce on the single product pages.
    You can remove that by adding this code to your child theme –

    
    function your_prefix_setup() {
        remove_theme_support( 'wc-product-gallery-lightbox' );
    }
    
    add_action( 'wp', 'your_prefix_setup' );
    
Viewing 1 replies (of 1 total)
  • The topic ‘How to remove lightbox feature for WC in Astra’ is closed to new replies.