Disabled WooCommerce Cart Fragments on your homepage
/** Disable Ajax Call from WooCommerce */ | |
add_action( 'wp_enqueue_scripts', 'dequeue_woocommerce_cart_fragments', 11); | |
function dequeue_woocommerce_cart_fragments() { if (is_front_page()) wp_dequeue_script('wc-cart-fragments'); } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
This script can be added to your WordPress functions.php in your child theme to stop cart fragments being loaded on your homepage or any specific landing page.
This reduces load time by up to .5 seconds.