Skip to content
Sort by
-
-
-
-
-
-
-
-
Added to your cart:
** total_quantity ** | ** unit_price ** / ** unit_measure **
document.addEventListener("DOMContentLoaded", function() {
fetch('/cart.js')
.then(response => response.json())
.then(data => {
let cartCountElement = document.querySelector('.cart-count'); // Adjust based on your theme
if (cartCountElement) {
cartCountElement.textContent = data.item_count;
}
});
});