Update Cart Qty in Site header via WooCommerce

Update Cart Qty in Site header via WooCommerce

Custom Code to be places in plugin code file

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; ?>
        
    
    

screen112

screen113

Leave a Reply

Your email address will not be published. Required fields are marked *