Skip to content

Instantly share code, notes, and snippets.

@xlplugins
Created December 12, 2025 08:32
Show Gist options
  • Select an option

  • Save xlplugins/ae556268a8612ad83b82f60592f3f3dc to your computer and use it in GitHub Desktop.

Select an option

Save xlplugins/ae556268a8612ad83b82f60592f3f3dc to your computer and use it in GitHub Desktop.
Funnelkit Cart: Enqueue The cart fragments on the single product page
function load_wc_cart_fragments() {
if (is_product()) {
wp_enqueue_script('wc-cart-fragments');
}
}
add_action('wp_enqueue_scripts', 'load_wc_cart_fragments',9999);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment