Skip to content

Instantly share code, notes, and snippets.

@mjinayan80
Created October 25, 2017 09:52
Show Gist options
  • Select an option

  • Save mjinayan80/7cd4f3eeabe6b0296dcd7960f939e2ec to your computer and use it in GitHub Desktop.

Select an option

Save mjinayan80/7cd4f3eeabe6b0296dcd7960f939e2ec to your computer and use it in GitHub Desktop.
cart-functions.php
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