Created
May 7, 2020 21:32
-
-
Save BurlesonBrad/46d70dc0bcd3e21089289aff521d89fe to your computer and use it in GitHub Desktop.
for wayne
This file contains hidden or 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
/** 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