Skip to content

Instantly share code, notes, and snippets.

@mikejolley
Last active May 18, 2021 17:02
  • Star 87 You must be signed in to star a gist
  • Fork 27 You must be signed in to fork a gist
Star You must be signed in to star a gist
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>
@minitpatil
Copy link

thank you so much boss! feeling happy..:-)

@amaisbajwa
Copy link

thanks

@elvinlee
Copy link

Can this apply in email template?

@ajithrn
Copy link

ajithrn commented Apr 9, 2015

thanks 😄

@WaqarWebz
Copy link

Hi ! How can I get the number of items of Current Product in cart at product single page?????
like, in my website
http://cartridgemedia.co.uk/beta/shop/brother/compatible-brother-dr2100-brother-dr-2100/
I need to show it in black strip at the right box

Thanks

@eliasfaical
Copy link

I use this way

global $woocommerce;
$count = $woocommerce->cart->cart_contents_count;
if ($count > 0) {
echo '';
echo $count;
echo '
';
}

@StrongEagle
Copy link

Hello, I hope this is in the right thread...I'd like to display the cart total in the menu bar, but on both a main AND subdirectory site. Woocommerce is installed on the main site: https://stephaniedaviesarai.com - from where it will be possible to buy a book.

I've had to create a mirror install in a sub-directory (which looks identical) in order for my client to have two distinct blogs. This is effectively a one-page site at http://stephaniedaviesarai.com/cwc/cwc-blog/

The problem is that when you move to the second blog, you lose the cart. I know I can just have a straight link to the cart on the main site, but I lose the total in cart.

I'm look to put Your Cart - $20.00 in both menus. Can I do that?

Thanks for any and all help!

@gersonbarbosa7
Copy link

Great!

@alexapgutierrez
Copy link

WOW someone out there thought that a plugin would be better, this works perfect.

@edisonrd
Copy link

edisonrd commented Dec 4, 2016

does not work as a dropdown

@deepikasinglay
Copy link

Doesn't update on cart page while updating products. need to refresh for new updated count.

@morenojavier
Copy link

morenojavier commented Jun 13, 2017

Perferct works. I share a function that conditions if you do not have products in the cart, do not show us anything.


<?php if( WC()->cart->get_cart_contents_count() > 0){ ?>
  <li>
    <a class="cart-contents" href="<?php echo wc_get_cart_url(); ?>" title="<?php _e( 'View my car' ); ?>"><?php echo sprintf ( _n( '%d', '%d', WC()->cart->get_cart_contents_count() ), WC()->cart->get_cart_contents_count() ); ?>
    </a>
  </li>
  <? } ?>

@corydbrown
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/

@bruno-rodrigues
Copy link

Hey guys, what if I want to show the amount of unique items in cart? any hint?

@dudur
Copy link

dudur commented Nov 27, 2017

@ morenojavier
Works like a charm - Thanks !

@anonymousguyx
Copy link

Thanks dude!
No mini cart cache problem now 🗡️

@shaileshgajare
Copy link

how to cart in product count in woocommerce

@shaileshgajare
Copy link

my problem solve

@Aeonexe
Copy link

Aeonexe commented Apr 3, 2018

What about displaying the total of products without variations. i.e. I have 3 products and one of those have 2 variations so WC()->cart->get_cart_contents_count() would give 5 items. But I only want to count the 3 main products without variations.

@walworthvalves
Copy link

walworthvalves commented Apr 5, 2018

I have a problem in internet explorer, when I update the number of products on the cart page if it does, but in internet explorer 11 is not updated, I know, nobody uses internet explorer 11, except my client.

@cccamuseme
Copy link

Thanks, used with user login/out and account link as email.

    <?php
    $current_user = wp_get_current_user();
    $site_address = get_option( 'siteurl' );
					
    if ( is_user_logged_in() ) {
        echo '<a href="' . $site_address . '/my-account/customer-logout/">Logout</a>';
        echo '<a href="' . $site_address . '/my-account/">' . $current_user->user_email . '</a>';
      } else {
        echo '<a href="' . $site_address . '/my-account/">Login</a>';
    }
    ?>
						
    <a class="cart-contents" href="<?php echo wc_get_cart_url(); ?>" title="<?php _e( 'View your shopping cart' ); ?>"><i class="wpmenucart-icon-shopping-cart-0"></i><?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>

@volkanoz34
Copy link

ı use mesmerize theme ... how can i remove cart-contents-content ?

@volkanoz34
Copy link

in which file can I find someone tell the removal process

@win999bet
Copy link

Update 2019 for PHP 7+ use this code
<a href="<?php echo wc_get_cart_url(); ?>" type="button" class="btn btn-default"> <i class="fa fa-shopping-cart"></i> Your cart : <?php echo sprintf (_n( '%d items', '%d items', WC()->cart->cart_contents_count ), WC()->cart->cart_contents_count ); ?> </a>

Source code >> https://easyshop.buuscript.com

@abyjrc
Copy link

abyjrc commented Jul 26, 2019

Where can I add this code? I am using code snipet plugin and gives error

Update 2019 for PHP 7+ use this code
<a href="<?php echo wc_get_cart_url(); ?>" type="button" class="btn btn-default"> <i class="fa fa-shopping-cart"></i> Your cart : <?php echo sprintf (_n( '%d items', '%d items', WC()->cart->cart_contents_count ), WC()->cart->cart_contents_count ); ?> </a>

Source code >> https://easyshop.buuscript.com

@redlaw03
Copy link

thank you !

@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