Skip to content

Instantly share code, notes, and snippets.

@bewho
Forked from lukecav/functions.php
Created May 14, 2017 12:13
Show Gist options
  • Save bewho/87411d64b0e94340a999879b5c9c4a5d to your computer and use it in GitHub Desktop.
Save bewho/87411d64b0e94340a999879b5c9c4a5d 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