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