Skip to content

Instantly share code, notes, and snippets.

@mohammadYousefiDev
Last active December 22, 2021 06:35
Show Gist options
  • Save mohammadYousefiDev/156617460d2279975f8b15a93072c29e to your computer and use it in GitHub Desktop.
Save mohammadYousefiDev/156617460d2279975f8b15a93072c29e to your computer and use it in GitHub Desktop.
Disable stats.wp.com request in woocommerce
in functions.php
function DV_deactive_jetpack() {
wp_dequeue_script( 'devicepx' );
wp_dequeue_script( 'woo-tracks' );
}
add_action( 'admin_enqueue_scripts', 'DV_deactive_jetpack' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment