WooCommerce can be modified in many different ways. Using oxygen builder you can get the most out of your WooCommerce and modify it to its core. The below steps show how to make your WooCommerce cart total in a ajax format. You can use the element literally anywhere for your needs.
<div class="cart-count"> <?php echo WC()->cart->get_cart_contents_count();?> </div>
add_filter('woocommerce_add_to_cart_fragments', function($fragments) { ob_start(); ?> <div class="cart-count"> <?php echo WC()->cart->get_cart_contents_count(); ?> </div> <?php $fragments['div.cart-count'] = ob_get_clean(); return $fragments; });