This file contains 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
/** | |
* Show cart contents / total Ajax | |
*/ | |
add_filter( 'woocommerce_add_to_cart_fragments', 'woocommerce_header_add_to_cart_fragment' ); | |
function woocommerce_header_add_to_cart_fragment( $fragments ) { | |
global $woocommerce; | |
ob_start(); | |
?> | |
<a class="cart-customlocation" href="<?php echo esc_url(wc_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-customlocation'] = ob_get_clean(); | |
return $fragments; | |
} |
@JeffNicholls97
Yes, just add this to you themes function file:
add_shortcode (woocommerce_header_add_to_cart_fragment', 'woocommerce_header_add_to_cart_fragment' );
Then use the short code wherever you want
For example:
add_shortcode ('woo_cart_but', 'woo_cart_but' );
/**
Create Shortcode for WooCommerce Cart Menu Item
*/
function woo_cart_but() {
ob_start();
<?php
}