Skip to content

Instantly share code, notes, and snippets.

@krogsgard
Created May 29, 2013 20:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save krogsgard/5673676 to your computer and use it in GitHub Desktop.
Save krogsgard/5673676 to your computer and use it in GitHub Desktop.
<?php
// add shopping cart thingy
function mystore_shopping_cart() {
global $woocommerce;
?>
<aside class="header-cart-info">
<a href="<?php echo $woocommerce->cart->get_cart_url(); ?>" title="View your shopping carts" class="cart-contents">
<span class="amount"><?php echo $woocommerce->cart->get_cart_total(); ?></span>
<span class="cart"><?php echo sprintf(_n('%d item', '%d items', $woocommerce->cart->cart_contents_count, 'woothemes'), $woocommerce->cart->cart_contents_count); ?></span>
</a>
</aside> <!-- /.header-cart-info -->
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment