Skip to content

Instantly share code, notes, and snippets.

@lukecav
Created April 18, 2017 15:09
Show Gist options
  • Save lukecav/8bf402bc8754efc8ed4fc38b71e98776 to your computer and use it in GitHub Desktop.
Save lukecav/8bf402bc8754efc8ed4fc38b71e98776 to your computer and use it in GitHub Desktop.
Prevent unnecessary AJAX loading requests in WooCommerce
add_action( 'wp_enqueue_scripts', 'dequeue_woocommerce_cart_fragments', 11);
function dequeue_woocommerce_cart_fragments() {
if (is_front_page() || is_single() ) wp_dequeue_script('wc-cart-fragments');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment