Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- Code should go to your child theme functions.php file.
- Lottery widgets and shortcodes will not work properly when this code snippet is active.
- */
- add_action( 'wp_enqueue_scripts', 'woo_js_cleaner', 99 );
- function woo_js_cleaner() {
- if ( !is_product() ) {
- wp_dequeue_script( 'wc-lottery-jquery-plugin' );
- wp_dequeue_script( 'wc-lottery-countdown' );
- wp_dequeue_script( 'wc-lottery-countdown-language' );
- wp_dequeue_script( 'wc-lottery' );
- wp_dequeue_script( 'wc-lottery-public' );
- wp_dequeue_script( 'wc-lottery-pn' );
- wp_dequeue_script( 'jquery-alertable' );
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment