Created
August 28, 2014 11:00
-
-
Save fovoc/6f754556d11efe14651a to your computer and use it in GitHub Desktop.
Shoestrap 3 Woo child - Ajax cart in navbar (inside functions.php)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| add_filter('add_to_cart_fragments', 'woocommerce_header_add_to_cart_fragment'); | |
| function woocommerce_header_add_to_cart_fragment( $fragments ) { | |
| global $woocommerce; | |
| ob_start(); | |
| ?> | |
| <a>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> | |
| <?php | |
| $fragments['a.cart-contents'] = ob_get_clean(); | |
| return $fragments; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment