@apurno
Remove this code:
// ADD - EDIT LISTING - ALLOW ONLY DECIMALS IN PRICE INPUT
$('.add_item input#price').on("keypress keyup blur",function (event) {
$(this).val($(this).val().replace(/[^0-9\.]/g,''));
if ((event.which != 46 || $(this).val().indexOf('.') != -1) && (event.which < 48 || event.which > 57)) {
event.preventDefault();
}
});
From file:
oc-content/themes/zara/js/global.js