Skip to content

Instantly share code, notes, and snippets.

@adambradford
Created March 21, 2018 14:48
Show Gist options
  • Save adambradford/b651a354b907324ce2d8196ac8ac2717 to your computer and use it in GitHub Desktop.
Save adambradford/b651a354b907324ce2d8196ac8ac2717 to your computer and use it in GitHub Desktop.
Ensure WooCommerce cart contents update when products are added to the cart via AJAX
<?php
//* Add this to your functions.php file. Do NOT include the opening php tag
// Ensure cart contents update when products are added to the cart via AJAX
add_filter( 'woocommerce_add_to_cart_fragments', 'woocommerce_header_add_to_cart_fragment' );
function woocommerce_header_add_to_cart_fragment( $fragments ) {
ob_start();
?>
<a class="cart-contents" href="<?php echo WC()->cart->get_cart_url(); ?>" title="<?php _e( 'View your shopping cart' ); ?>"><?php echo sprintf (_n( '%d item', '%d items', WC()->cart->cart_contents_count ), WC()->cart->cart_contents_count ); ?> - <?php echo WC()->cart->get_cart_total(); ?></a>
<?php
$fragments['a.cart-contents'] = ob_get_clean();
return $fragments;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment