Skip to content

Instantly share code, notes, and snippets.

@mikejolley
Created March 20, 2012 15:46
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 mikejolley/2137324 to your computer and use it in GitHub Desktop.
Save mikejolley/2137324 to your computer and use it in GitHub Desktop.
Remove WooCommerce CSS from shop page
<?php
add_action( 'wp_enqueue_scripts', 'rcd_exclude_css_from_shop' );
function rcd_exclude_css_from_shop() {
if( is_shop() ) {
wp_dequeue_style('woocommerce_frontend_styles');
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment