Cart – Jane’s Saving Grace
You may be interested in…
Your cart is currently empty!
New in store
0
jQuery(document).ready(function($) {
function updateCartCount() {
$.ajax({
url: wc_add_to_cart_params.ajax_url,
type: 'POST',
data: {
action: 'get_cart_count'
},
success: function(response) {
if (response !== '') {
$('.floating-cart-icon .cart-count').text(response);
}
}
});
}
// Update count when an item is added to the cart
$(document.body).on('added_to_cart', function() {
updateCartCount();
});
// Update count on page load
updateCartCount();
});
0