Guest Posted December 10, 2003 Share Posted December 10, 2003 The email that is getting sent out to new customers has all this extra added on: EMAIL_GV_INCENTIVE_HEADER EMAIL_GV_REDEEM EMAIL_GV_LINKhttp://shop.myonestopbeadshop.com/catalog/gv_redeem.php?gv_no=d238c1dcf7 EMAIL_COUPON_INCENTIVE_HEADER EMAIL_COUPON_REDEEM I'd prefer to just remove this entirely, as I don't want to give customers a discount when they register... also after this the first part of the welcome email: You can now take part in the various services we have to offer you. Some of these services include: Permanent Cart - Any products added to your online cart remain there until you remove them, or check them out. Address Book - We can now deliver your products to another address other than yours! This is perfect to send birthday gifts direct to the birthday-person themselves. Order History - View your history of purchases that you have made with us. Products Reviews - Share your opinions on products with our other customers. etc is repeated, how do I remove the voucher part, and the rest? Link to comment Share on other sites More sharing options...
Guest Posted December 16, 2003 Share Posted December 16, 2003 :( anyone? Beuller? Link to comment Share on other sites More sharing options...
Jack_mcs Posted December 16, 2003 Share Posted December 16, 2003 The email that is getting sent out to new customers has all this extra added on: EMAIL_GV_INCENTIVE_HEADER EMAIL_GV_REDEEM EMAIL_GV_LINKhttp://shop.myonestopbeadshop.com/catalog/gv_redeem.php?gv_no=d238c1dcf7 EMAIL_COUPON_INCENTIVE_HEADER EMAIL_COUPON_REDEEM This should not be happening. Looks like there is a mistake in your installation. Those items being sent are meant to contain text that is inserted into the E-Mail. Take a look at the file catalog->includes->languages->english->gv_send.php. You should see something like the following (among others). The text shown below, starting with "To redeem" is what should appear in your E-Mail. define('EMAIL_GV_REDEEM', 'To redeem this Gift Certificate, please click on the link below. Please also write down the redemption code which is %s. In case you have problems.'); HTH Jack Support Links: For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc. All of My Addons Get the latest versions of my addons Recommended SEO Addons Link to comment Share on other sites More sharing options...
kagg Posted December 16, 2003 Share Posted December 16, 2003 If you are using MS2, Find the following line in /catalog/includes/languages/english/create_account.php: define('EMAIL_TEXT', 'You can now take part in the <b>various services</b> we have to offer you. Some of these services include:' . "\n\n" . '<li><b>Permanent Cart</b> - Any products added to your online cart remain there until you remove them, or check them out.' . "\n" . '<li><b>Address Book</b> - We can now deliver your products to another address other than yours! This is perfect to send birthday gifts direct to the birthday-person themselves.' . "\n" . '<li><b>Order History</b> - View your history of purchases that you have made with us.' . "\n" . '<li><b>Products Reviews</b> - Share your opinions on products with our other customers.' . "\n\n"); Replace with: define('EMAIL_TEXT', ''); to remove gift voucher and discount coupon text from the email, modify the following lines in /catalog/includes/add_ccgvdc_application_top.php: // 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'); // // 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'); To: // Set the amount of a Gift Voucher that the new signup will receive, set to 0 for none define('NEW_SIGNUP_GIFT_VOUCHER_AMOUNT', '0'); // // 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', ''); Link to comment Share on other sites More sharing options...
Guest Posted December 23, 2003 Share Posted December 23, 2003 thanks so much!!! :D Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.