M Mo6538 New Member YetiShare User Feb 17, 2018 20 3 3 Switzerland Apr 2, 2018 #1 I only can generate 100 Voucher Codes, even if i type in 5,10,50,..., 120. What causes this error ?
adam Administrator Staff member Dec 5, 2009 2,046 108 63 Apr 2, 2018 #2 Hi, Thanks for reporting this. The issue was around the form and when jquery creates a duplicate of it for the popup. I've fixed it in our latest release code but you can also patch it by doing the following: In: "\plugins\vouchers\admin\manage_vouchers.php" Find: function confirmAdd() Replace with: function confirmAdd(ele) Find: $('#generateVouchersDataForm').submit(); Replace with: $(ele).parent().parent().find('form').submit(); Find: onClick="confirmAdd(); Replace with: onClick="confirmAdd(this); Reactions: Mo6538
Hi, Thanks for reporting this. The issue was around the form and when jquery creates a duplicate of it for the popup. I've fixed it in our latest release code but you can also patch it by doing the following: In: "\plugins\vouchers\admin\manage_vouchers.php" Find: function confirmAdd() Replace with: function confirmAdd(ele) Find: $('#generateVouchersDataForm').submit(); Replace with: $(ele).parent().parent().find('form').submit(); Find: onClick="confirmAdd(); Replace with: onClick="confirmAdd(this);
M Mo6538 New Member YetiShare User Feb 17, 2018 20 3 3 Switzerland Apr 3, 2018 #3 Thank you, working fine now! Reactions: adam