If using MAX 1.7
log in to admin, click "configuration" from the menu, look on the left column for "My Store" click the link, when page loads the next to the last menu item says "Welcome Gift Voucher Amount" click it, click edit and change it to "0".
If using MAX 1.5
Login to FTP to your site, or use your favorite editor and open file /includes/add_ccgvdc_application_top.php" and look for the following code and change the number "10" to whatever amount you wish to give to new account sigups.
Code:
// Set the amount of a Gift Voucher that the new signup will receive, set to 0 for none
define('NEW_SIGNUP_GIFT_VOUCHER_AMOUNT', '10');
Alternatively if you wish to disable this feature altogether, in the same file find this code:
Code:
// Set the coupon ID that will be sent by email to a new signup, if no id is set then no email :)
define('NEW_SIGNUP_DISCOUNT_COUPON', '3');
and change it to this:
Code:
// Set the coupon ID that will be sent by email to a new signup, if no id is set then no email :)
define('NEW_SIGNUP_DISCOUNT_COUPON', '');
Hope this helps you out.
Bookmarks