diff --git a/templates/backOffice/default/assets/js/coupon.js b/templates/backOffice/default/assets/js/coupon.js index a22a968c6..dae6d9574 100644 --- a/templates/backOffice/default/assets/js/coupon.js +++ b/templates/backOffice/default/assets/js/coupon.js @@ -235,6 +235,14 @@ $(function($){ } }).done(function(data) { inputsDiv.html(data); + + // Invoke coupon setup funtion, if any + try { + couponInputFormSetup(); + } + catch (ex) { + // Ignore the error + } }); };