SOLVING LIFE PRO

Lost your password? Please enter your username or email address. You will receive a link to create a new password via email.




document.addEventListener('DOMContentLoaded', function () { const qtyInput = document.querySelector('input.qty'); const priceWrapper = document.querySelector('.summary .woocommerce-Price-amount'); if (qtyInput && priceWrapper) { // মূল দাম একবারই নিবো (যেমন 1200) const originalPrice = parseFloat(priceWrapper.textContent.replace(/[^0-9.]/g, '')); qtyInput.addEventListener('input', function () { const qty = parseInt(this.value) || 1; const updatedPrice = originalPrice * qty; priceWrapper.textContent = "৳" + updatedPrice.toFixed(2); }); } });