Skip to content

Instantly share code, notes, and snippets.

@wbcomdev
Created May 18, 2021 05:51
Show Gist options
  • Select an option

  • Save wbcomdev/8499ad7639f86e542adc1b602dbbd051 to your computer and use it in GitHub Desktop.

Select an option

Save wbcomdev/8499ad7639f86e542adc1b602dbbd051 to your computer and use it in GitHub Desktop.
/**
* Show cart contents / total Ajax.
*/
function wb_woocommerce_header_add_to_cart_fragment( $fragments ) {
global $woocommerce;
ob_start();
?>
<a class="cart-customlocation" href="<?php echo esc_url( wc_get_cart_url() ); ?>" title="<?php _e( 'View your shopping cart', 'woothemes' ); ?>"><?php echo sprintf( _n( '%d item', '%d items', $woocommerce->cart->cart_contents_count, 'woothemes' ), $woocommerce->cart->cart_contents_count ); ?> - <?php echo $woocommerce->cart->get_cart_total(); ?></a>
<?php
$fragments['a.cart-customlocation'] = ob_get_clean();
return $fragments;
}
add_filter( 'woocommerce_add_to_cart_fragments', 'wb_woocommerce_header_add_to_cart_fragment' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment