Guest User

Untitled

a guest
Oct 16th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. add_action( 'init', 'child_manage_woo_styles', 99 );
  2. define( 'WOOCOMMERCE_USE_CSS', false );
  3. /**
  4. * Remove all WooCommerce scripts and styles
  5. *
  6. * @author WP Smith
  7. * @since 1.0.0
  8. */
  9. function child_manage_woo_styles() {
  10. remove_action( 'wp_head', array( $GLOBALS['woocommerce'], 'generator' ) );
  11. remove_action( 'wp_enqueue_scripts', array( $GLOBALS['woocommerce'], 'frontend_scripts' ) );
  12. }
Add Comment
Please, Sign In to add comment