Its been months since ive played around with the basics LOL so forgotten what php file i have to change to edit text in welcome email, could someone please tell me where it is Lol appreciated!
Elliot
Its been months since ive played around with the basics LOL so forgotten what php file i have to change to edit text in welcome email, could someone please tell me where it is Lol appreciated!
Elliot
/admin/includes/languages/english/add_customers.php
/includes/languages/english/[your_custom_template_name]/create_account.php
or if you don't use a custom template then:
/includes/languages/english/create_account.php
Ron
www.aspenshopsonline.com - ZenCart 1.3.9h
www.wilkssupply.com - ZenCart 1.3.9h
www.un-du.net - ZenCart 1.3.8a
Note: there's no such file in a default install of Zen Cart.
FAQ: https://www.zen-cart.com/tutorials/index.php?article=20
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.
www.aspenshopsonline.com - ZenCart 1.3.9h
www.wilkssupply.com - ZenCart 1.3.9h
www.un-du.net - ZenCart 1.3.8a
Thanks - this thread helped me out too.
Now I'm wondering where to find the email that is sent when a person makes an order... it seems like it would be one of the checkout_*.php files but I'm not 'seeing it'... a pointer would be appreciated.
Thanks!
I am not sure if this is the tread to post this, but I will give it a try. I am trying to change the text of the welcome email that is sent out. But when I try to add more than one sentence in the section listed below, the page does not show up. So I am wondering what is wrong with my coding that is causing the checkout page after account creation not show up. I am editing the includes/languages/english/create_account.php file.
This coding works:
This does not work:PHP Code:define('EMAIL_TEXT', 'We hope you enjoy our product selection as much as we do.' . "\n\n" . 'With your account, you can now take part in the <strong>various services</strong> it has to offer you. Some of these services include:' . "\n\n" . '<li><strong>Permanent Cart</strong> - Any products added to your online cart remain there until you remove them, or check them out.' . "\n\n" . '<li><strong>Order History</strong> - View your history of purchases that you have made and gain access to your downloads.' . "\n\n" );
Can anyone help me figure out what is wrong? Thanks!PHP Code:define('EMAIL_TEXT', 'We hope you enjoy our product selection as much as we do.<br/><br/>We hope you enjoy our product selection as much as we do. We designed our company in an effort to make looking good affordable to everyone, we don't think you should have to spend an arm and a leg to be in style. Browse our items and if you don't see what you are looking for contact us at (email address).' . "\n\n" . 'With your account, you can now take part in the <strong>various services</strong> it has to offer you. Some of these services include:' . "\n\n" . '<li><strong>Permanent Cart</strong> - Any products added to your online cart remain there until you remove them, or check them out.' . "\n\n" . '<li><strong>Order History</strong> - View your history of purchases that you have made and gain access to your downloads.' . "\n\n" );
https://www.zen-cart.com/tutorials/index.php?article=82
You're mixing apostrophes into your text, thus causing syntax errors.
ref: https://www.zen-cart.com/tutorials/index.php?article=87
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.