Voucher Reseller Plugin

adam

Administrator
Staff member
Dec 5, 2009
2,043
108
63
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);
 
  • Like
Reactions: Mo6538