Откройте файл
/themes/тема/js/product.js
Код:
$('#our_price_display').text(formatCurrency(priceWithDiscountsDisplay * currencyRate, currencyFormat, currencySign, currencyBlank));
замените на:
Код:
$('#our_price_display').text(formatCurrency(parseInt($('#quantity_wanted').val()) * (priceWithDiscountsDisplay * currencyRate), currencyFormat, currencySign, currencyBlank));
после:
Код:
$('input[name='+fieldName+']').val(quantityAvailableT);
добавьте:
Код:
updatePrice();
после:
Код:
$('input[name='+fieldName+']').val(1);
добавьте:
Код:
updatePrice();