Skip to content

Instantly share code, notes, and snippets.

@raselahmed7
Created August 1, 2017 06:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save raselahmed7/6ccadaac45490829d06dec4a9a7a57d8 to your computer and use it in GitHub Desktop.
Save raselahmed7/6ccadaac45490829d06dec4a9a7a57d8 to your computer and use it in GitHub Desktop.
function woocommerce_cart_link() {
global $woocommerce;
?>
<a href="<?php echo esc_url($woocommerce->cart->get_cart_url()); ?>" title="<?php echo sprintf(_n('%d item', '%d items', $woocommerce->cart->cart_contents_count, 'woothemes'), $woocommerce->cart->cart_contents_count);?> <?php _e('in your shopping cart', 'woothemes'); ?>" class="cart-button ">
<span class="label"><?php esc_html_e('My Basket:', 'woothemes'); ?></span>
<?php echo esc_html($woocommerce->cart->get_cart_total()); ?>
<span class="items"><?php echo sprintf(_n('%d item', '%d items', $woocommerce->cart->cart_contents_count, 'woothemes'), $woocommerce->cart->cart_contents_count); ?></span>
</a>
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment