-
-
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> |
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
ı use mesmerize theme ... how can i remove cart-contents-content ?