Skip to content

Instantly share code, notes, and snippets.

@mikejolley
Last active May 18, 2021 17:02
Show Gist options
  • Star 87 You must be signed in to star a gist
  • Fork 27 You must be signed in to fork a gist
  • Save mikejolley/2044101 to your computer and use it in GitHub Desktop.
Save mikejolley/2044101 to your computer and use it in GitHub Desktop.
WooCommerce - Show number of items in cart and total
<a class="cart-contents" href="<?php echo wc_get_cart_url(); ?>" title="<?php _e( 'View your shopping cart' ); ?>"><?php echo sprintf ( _n( '%d item', '%d items', WC()->cart->get_cart_contents_count() ), WC()->cart->get_cart_contents_count() ); ?> - <?php echo WC()->cart->get_cart_total(); ?></a>
@matrerodunbraesubic
Copy link

Thanks, it's working on my side, Cheers🍻

@DataErrorCoding
Copy link

DataErrorCoding commented Mar 10, 2021

I need to use the total number of items in cart for my new shipping method, but I dont understand how to use this for that. Using only $woocommerce->cart->cart_contents_count doesnt seem to work? <

@ali5alkaf5
Copy link

Here is a plugin that allows you to add a shortcode displaying cart count and total: https://wordpress.org/plugins/woo-cart-count-shortcode/

Thanks, it has complete shortcode attributes that I needed

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment