Title: Loading scripts and plugin styles
Last modified: August 31, 2022

---

# Loading scripts and plugin styles

 *  Resolved [barbuduweb](https://wordpress.org/support/users/barbuduweb/)
 * (@barbuduweb)
 * [3 years, 9 months ago](https://wordpress.org/support/topic/loading-scripts-and-plugin-styles/)
 * Hello!
 * Is there a way to prevent plugin scripts and styles from loading on a non-product
   page?
 * The filters “disable_wvg_inline_style” and “disable_wvg_enqueue_scripts” are 
   not longer usable.
 * Thank you a lot.

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

 *  Plugin Support [fizanzvai](https://wordpress.org/support/users/fizanzvai/)
 * (@fizanzvai)
 * [3 years, 8 months ago](https://wordpress.org/support/topic/loading-scripts-and-plugin-styles/#post-16020656)
 * [@barbuduweb](https://wordpress.org/support/users/barbuduweb/)
 * Add the below snippet using Code Snippets plugin or, inside your current theme’s
   functions.php file.
    Note: Please use a child theme otherwise the modification
   will be lost once you update your theme.
 *     ```
       add_filter( 'disable_woo_variation_gallery', function( $default ){
       	if( !is_woocommerce() ){
       		return true;
       	}
       	return $default;
       } );
   
       add_filter( 'woo_variation_gallery_slider_template_js', function( $data ){
       	if( !is_woocommerce() ){
       		return;
       	}
       	return $data;
       } );
       ```
   
 *  Thread Starter [barbuduweb](https://wordpress.org/support/users/barbuduweb/)
 * (@barbuduweb)
 * [3 years, 8 months ago](https://wordpress.org/support/topic/loading-scripts-and-plugin-styles/#post-16022287)
 * Thanks a lot, it works perfectly!

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

The topic ‘Loading scripts and plugin styles’ is closed to new replies.

 * ![](https://ps.w.org/woo-variation-gallery/assets/icon-128x128.gif?rev=2741185)
 * [Additional Variation Images Gallery for WooCommerce](https://wordpress.org/plugins/woo-variation-gallery/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/woo-variation-gallery/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/woo-variation-gallery/)
 * [Active Topics](https://wordpress.org/support/plugin/woo-variation-gallery/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woo-variation-gallery/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woo-variation-gallery/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [barbuduweb](https://wordpress.org/support/users/barbuduweb/)
 * Last activity: [3 years, 8 months ago](https://wordpress.org/support/topic/loading-scripts-and-plugin-styles/#post-16022287)
 * Status: resolved