Skip to content

Instantly share code, notes, and snippets.

@yratof
Last active July 12, 2019 19:14
Show Gist options
  • Save yratof/0d5353a0d949ae653aba to your computer and use it in GitHub Desktop.
Save yratof/0d5353a0d949ae653aba to your computer and use it in GitHub Desktop.
woocommerce mini cart
<?php
// Ensure cart contents update when products
// are added to the cart via AJAX
add_filter('add_to_cart_fragments', 'woocommerce_header_add_to_cart_fragment');
function woocommerce_header_add_to_cart_fragment( $fragments ) {
global $woocommerce;
ob_start();
echo '<a class="cart-contents" href="' . $woocommerce->cart->get_cart_url() .'" title="' . __( 'View your shopping cart', 'drivdigital' ) .'">';
echo sprintf( _n( '%d item', '%d items', $woocommerce->cart->cart_contents_count, 'drivdigital' ), $woocommerce->cart->cart_contents_count) . ' - ' . $woocommerce->cart->get_cart_total();
echo '</a>';
$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