Skip to content

Instantly share code, notes, and snippets.

@jorgejaramillo
Forked from mikejolley/gist:2044101
Created April 13, 2012 03:49
Show Gist options
  • Save jorgejaramillo/2373530 to your computer and use it in GitHub Desktop.
Save jorgejaramillo/2373530 to your computer and use it in GitHub Desktop.
WooCommerce - Mostrar número de items en la canasta y valor total
<?php global $woocommerce; ?>
<a class="cart-contents" href="<?php echo $woocommerce->cart->get_cart_url(); ?>" title="<?php _e('View your shopping cart', 'woothemes'); ?>"><?php echo sprintf(_n('%d item', '%d items', $woocommerce->cart->cart_contents_count, 'woothemes'), $woocommerce->cart->cart_contents_count);?> - <?php echo $woocommerce->cart->get_cart_total(); ?></a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment