Home
/
Store
/
DRY FRUITS
+2
Dried kiwi-450g
SKU 00546
₹648.00
Packed: 04/25
In stock
Quantity:
1
Add More
Add to Bag
Go to Checkout
Save this product for later
Favorite
Favorited
View Favorites
Share this product with your friends
Share
Share
Pin it
Dried kiwi-450g
Skip to main content
One Day Exclusive Supersale: Buy 2 Get 1 FREE. Cash on Delivery Available.
Menu
Store
About Us
Delivery
Contact us
+91 99450 22211
contact@indiannutscompany.com
// Add this to Ecwid → Settings → General → Advanced Settings → "JavaScript for footer" document.addEventListener('DOMContentLoaded', function() { // Wait for Ecwid to fully load if (typeof Ecwid !== 'undefined') { Ecwid.OnPageLoaded.add(function(page) { if (page.type === 'CART') { // Delay slightly to ensure cart data is ready setTimeout(showSavings, 500); } }); } function showSavings() { const cart = Ecwid.getCart(); if (!cart || !cart.items) return; let totalSavings = 0; let hasDiscounts = false; // Calculate savings cart.items.forEach(item => { if (item.originalPrice && item.originalPrice > item.price) { totalSavings += (item.originalPrice - item.price) * item.quantity; hasDiscounts = true; } }); // Remove existing savings display (avoid duplicates) const oldSavings = document.querySelector('.ecwid-cart-savings'); if (oldSavings) oldSavings.remove(); // Only show if discounts exist if (hasDiscounts) { const savingsHtml = `
🎉 You saved:
$${totalSavings.toFixed(2)}
`; // Insert above checkout button (works with most Ecwid themes) const checkoutSection = document.querySelector('.ec-cart__footer, .ec-cart__summary-row-total'); if (checkoutSection) { checkoutSection.insertAdjacentHTML('beforebegin', savingsHtml); } } } // Also update when cart changes (e.g., quantity updated) Ecwid.OnCartChanged.add(function() { if (Ecwid.getPageType() === 'CART') { setTimeout(showSavings, 300); } }); });