Last active
October 28, 2024 06:16
-
-
Save gregrickaby/2846416 to your computer and use it in GitHub Desktop.
Remove WooCommerce styles and scripts.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//* Do NOT include the opening php tag shown above. Copy the code shown below into functions.php | |
/** | |
* Manage WooCommerce styles and scripts. | |
*/ | |
function grd_woocommerce_script_cleaner() { | |
// Remove the generator tag | |
remove_action( 'wp_head', array( $GLOBALS['woocommerce'], 'generator' ) ); | |
// Unless we're in the store, remove all the cruft! | |
if ( ! is_woocommerce() && ! is_cart() && ! is_checkout() ) { | |
wp_dequeue_style( 'woocommerce_frontend_styles' ); | |
wp_dequeue_style( 'woocommerce-general'); | |
wp_dequeue_style( 'woocommerce-layout' ); | |
wp_dequeue_style( 'woocommerce-smallscreen' ); | |
wp_dequeue_style( 'woocommerce_fancybox_styles' ); | |
wp_dequeue_style( 'woocommerce_chosen_styles' ); | |
wp_dequeue_style( 'woocommerce_prettyPhoto_css' ); | |
wp_dequeue_script( 'selectWoo' ); | |
wp_deregister_script( 'selectWoo' ); | |
wp_dequeue_script( 'wc-add-payment-method' ); | |
wp_dequeue_script( 'wc-lost-password' ); | |
wp_dequeue_script( 'wc_price_slider' ); | |
wp_dequeue_script( 'wc-single-product' ); | |
wp_dequeue_script( 'wc-add-to-cart' ); | |
wp_dequeue_script( 'wc-cart-fragments' ); | |
wp_dequeue_script( 'wc-credit-card-form' ); | |
wp_dequeue_script( 'wc-checkout' ); | |
wp_dequeue_script( 'wc-add-to-cart-variation' ); | |
wp_dequeue_script( 'wc-single-product' ); | |
wp_dequeue_script( 'wc-cart' ); | |
wp_dequeue_script( 'wc-chosen' ); | |
wp_dequeue_script( 'woocommerce' ); | |
wp_dequeue_script( 'prettyPhoto' ); | |
wp_dequeue_script( 'prettyPhoto-init' ); | |
wp_dequeue_script( 'jquery-blockui' ); | |
wp_dequeue_script( 'jquery-placeholder' ); | |
wp_dequeue_script( 'jquery-payment' ); | |
wp_dequeue_script( 'fancybox' ); | |
wp_dequeue_script( 'jqueryui' ); | |
} | |
} | |
add_action( 'wp_enqueue_scripts', 'grd_woocommerce_script_cleaner', 99 ); |
Super helpful, thanks!
Not working with WooCommerce 2.6.4
simply deregister jquery is another, more radical way to go :)
wp_deregister_script('jquery');
Thanks...
Not working with WooCommerce 2.6.4
I removed right now some css
files using this:
function woocommerce_dequeue_styles( $enqueue_styles ) {
if ( !is_woocommerce() && !is_cart() && !is_checkout() ) {
unset( $enqueue_styles['woocommerce-general'] );
unset( $enqueue_styles['woocommerce-layout'] );
unset( $enqueue_styles['woocommerce-smallscreen'] );
}
return $enqueue_styles;
}
add_filter( 'woocommerce_enqueue_styles', 'woocommerce_dequeue_styles' );
Is in documentation, check it out.
FWIW the WP 5+ Gutenberg block CSS handle is 'wc-block-style'
littlepackage
FWIW the WP 5+ Gutenberg block CSS handle is
twentysixteen-block-style
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
Hi,
Is working with woocommerce 2.4?
do you have any code for minify js and css automaticly in wordpress? Or reduce number of js/css without plugins?
Thank you