| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | add_filter( 'add_to_cart_fragments', 'wpm_header_add_to_cart_fragment' ); function wpm_header_add_to_cart_fragment( $fragments ) {     global $woocommerce;     ob_start();     ?>     <a href="<?php echo site_url( '/cart' ); ?>" class="header__cart">         <i class="icon-bag">             <span class="header__cart-val mobile"><?php echo $woocommerce->cart->cart_contents_count; ?></span>         </i>         <span class="header__cart-val  desktop">             <?php if ( $woocommerce->cart->cart_contents_count ): ?>                 <?php echo $woocommerce->cart->cart_contents_count; ?> items — <?php echo $woocommerce->cart->get_cart_total(); ?>             <?php endif; ?>         </span>     </a>     <?php     $fragments['a.header__cart'] = ob_get_clean();     return $fragments; } |