-
-
Save mikejolley/2044101 to your computer and use it in GitHub Desktop.
<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> |
@ morenojavier
Works like a charm - Thanks !
Thanks dude!
No mini cart cache problem now 🗡️
how to cart in product count in woocommerce
my problem solve
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.
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.
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>
ı use mesmerize theme ... how can i remove cart-contents-content ?
in which file can I find someone tell the removal process
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
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
thank you !
Thanks, it's working on my side, Cheers🍻
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? <
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
Hey guys, what if I want to show the amount of unique items in cart? any hint?