Fügen Sie mehr Artikel hinzu, um kostenlosen Versand zu erhalten!
document.addEventListener('DOMContentLoaded', function() {
var shippingBar = document.getElementById('shipping-bar');
var shippingInfo = document.getElementById('shipping-info');
// Beispiel: Versendegrenze für kostenlosen Versand
var freeShippingThreshold = 50; // Beispielwert: Kostenloser Versand ab 50€
// Hole den aktuellen Warenwert (dies ist eine einfache Annahme, je nach Shopify-Integration könnte es variieren)
fetch('/cart.js')
.then(response => response.json())
.then(cart => {
var totalPrice = cart.total_price / 100; // Gesamtpreis in Euro
if (totalPrice >= freeShippingThreshold) {
shippingInfo.textContent = "Sie haben kostenlosen Versand!";
} else {
var remaining = freeShippingThreshold - totalPrice;
shippingInfo.textContent = "Fügen Sie noch " + remaining.toFixed(2) + "€ hinzu, um kostenlosen Versand zu erhalten.";
}
});
});