Skip to content

Instantly share code, notes, and snippets.

@luizbills
Forked from mikejolley/gist:2044101
Last active August 11, 2018 20:33
Show Gist options
  • Save luizbills/f845c7f07d0e3d0b411c165a72778018 to your computer and use it in GitHub Desktop.
Save luizbills/f845c7f07d0e3d0b411c165a72778018 to your computer and use it in GitHub Desktop.
WooCommerce - Show number of items in cart, weight and total
<?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