Last active
August 11, 2018 20:33
-
-
Save luizbills/f845c7f07d0e3d0b411c165a72778018 to your computer and use it in GitHub Desktop.
WooCommerce - Show number of items in cart, weight and total
This file contains hidden or 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
<?php | |
$cart = WC()->cart; | |
$weigth_unit = 'kg'; | |
$items = sprintf( _n( '%d item', '%d items', $cart->get_cart_contents_count() ), $cart->get_cart_contents_count() ); | |
$weight = wc_get_weight( $cart->get_cart_contents_weight(), $weigth_unit ) . $weigth_unit; | |
$total = $cart->get_cart_total(); | |
?> | |
<a class="cart-contents" href="<?php echo wc_get_cart_url(); ?>" title="<?php _e( 'View your shopping cart' ); ?>"> | |
<?php echo "$items - $weight - $total"; ?> | |
</a> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment