top of page

The Purest Solutions

0 products

No products here yet...

In the meantime, you can choose a different category to continue shopping.

bottom of page
$w.onReady(function () { $w('#addToCartButton').onClick(() => { wixStores.cart.getCurrentCart() .then((cart) => { let items = cart.lineItems.filter(item => item.productId === $w('#productPage').product.id); let totalQty = items.reduce((sum, i) => sum + i.quantity, 0); if (totalQty >= 4) { wixWindow.openLightbox("تنبيه", { message: "عذرًا، لا يمكن طلب أكثر من 4 قطع من هذا المنتج." }); throw new Error("Maximum quantity reached"); } }); }); });