mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
5 lines
207 B
Text
5 lines
207 B
Text
add_action( 'wp_enqueue_scripts', 'wc_disable_woocommerce_cart_fragments', 11 );
|
|
|
|
function wc_disable_woocommerce_cart_fragments() {
|
|
if ( is_front_page() ) wp_dequeue_script( 'wc-cart-fragments' );
|
|
}
|