Skip to content

Instantly share code, notes, and snippets.

@RiFi2k
Created May 16, 2018 08:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RiFi2k/57c1bde17370bfb0ac448120d1a29299 to your computer and use it in GitHub Desktop.
Save RiFi2k/57c1bde17370bfb0ac448120d1a29299 to your computer and use it in GitHub Desktop.
Knocks them all out real quick
remove_action('wp_enqueue_scripts', [WC_Frontend_Scripts::class, 'load_scripts']);
remove_action('wp_print_scripts', [WC_Frontend_Scripts::class, 'localize_printed_scripts'], 5);
remove_action('wp_print_footer_scripts', [WC_Frontend_Scripts::class, 'localize_printed_scripts'], 5);
@RiFi2k
Copy link
Author

RiFi2k commented May 16, 2018

If you want to throw in stylesheets as well

add_filter( 'woocommerce_enqueue_styles', '__return_empty_array' );

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment