Skip to content

Instantly share code, notes, and snippets.

@Narayon
Forked from jameskoster/functions.php
Last active April 8, 2018 02:52
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Narayon/6c56a8591c7cbb2454ab to your computer and use it in GitHub Desktop.
Save Narayon/6c56a8591c7cbb2454ab to your computer and use it in GitHub Desktop.
WooCommerce: dequeue css (2.1+)
// Remove each style one by one
add_filter( 'woocommerce_enqueue_styles', 'jk_dequeue_styles' );
function jk_dequeue_styles( $enqueue_styles ) {
unset( $enqueue_styles['woocommerce-general'] ); // Remove the gloss
unset( $enqueue_styles['woocommerce-layout'] ); // Remove the layout
unset( $enqueue_styles['woocommerce-smallscreen'] ); // Remove the smallscreen optimisation
return $enqueue_styles;
}
// Or just remove them all in one line
add_filter( 'woocommerce_enqueue_styles', '__return_false' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment