Last active
October 28, 2024 06:14
-
-
Save mikejolley/2044101 to your computer and use it in GitHub Desktop.
WooCommerce - Show number of items in cart and total
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
DataErrorCoding
commented
Mar 10, 2021
•
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