cart icon with product number code example
Example 1: cart icon in woocommerce
<?php echo do_shortcode("[woo_cart_but]"); ?>
Example 2: how to add woocommerce cart counter
add_filter( 'woocommerce_add_to_cart_fragments', 'misha_add_to_cart_fragment' );
function misha_add_to_cart_fragment( $fragments ) {
global $woocommerce;
$fragments['.misha-cart'] = '<a href="' . wc_get_cart_url() . '" class="misha-cart">Cart (' . $woocommerce->cart->cart_contents_count . ')</a>';
return $fragments;
}