[wd_asp elements=’search’ ratio=’100%’ id=1]

Show woo commerce cart contents total

9th June 2018

WooCommerce

woocommerce category codehaven

Add this to the text area for example in the header
cart->get_cart_contents_count() ), WC()->cart->get_cart_contents_count() ); ?> - cart->get_cart_total(); ?>

then add this in your functions.php file
/**
* Show cart contents / total Ajax
*/
add_filter( 'woocommerce_add_to_cart_fragments', 'woocommerce_header_add_to_cart_fragment' );

function woocommerce_header_add_to_cart_fragment( $fragments ) {
global $woocommerce;

ob_start();

?>
cart->cart_contents_count, 'woothemes'), $woocommerce->cart->cart_contents_count);?> - cart->get_cart_total(); ?>