How to change text in "Order Confirmation" and "Welcome to our Store" page?
Hello.
When testing check out process we noticed that following text comes up in the "Order Confirmation" emails.
It says: "Please make your check or money order payable to: the Store Owner/Website Name" instead of the actual Store Name...
Where can I change this?
In "Welcome to our Store" Email it also says "For help with any of our online services, please email the store-owner:
[email protected]
Sincerely,
Our Store Name Team
Store Owner
Is the a way to completely get rig of the "Store Owner" line and just keep "Our Store Name Team" here??
Thanks.
Re: How to change text in "Order Confirmation" and "Welcome to our Store" page?
First of all check what you have in admin>>configuration>>my store in the admin panel.
Re: How to change text in "Order Confirmation" and "Welcome to our Store" page?
OK, we figured out the first part of the problem...
The setting to change it are in:-
admin>>>modules>>>payment>>>check/money order
Does anyone know how to completely get rig of the "Store Owner" line and just keep "Our Store Name Team" in "Welcome to our Store" email??
In "Welcome to our Store" Email it also says "For help with any of our online services, please email the store-owner:
[email protected]
Sincerely,
Our Store Name Team
Store Owner
Re: How to change text in "Order Confirmation" and "Welcome to our Store" page?
Thanks Nick.
Everything looks good in admin>>configuration>>my store in the admin panel.
I guess there is no way to get rid of the "the store-owner" line... and just keep the actual store name?
Also do you know where to fix "Success - Thank You" Page?
Thanks for the quick reply.
---------------------------------
Sandra.
Re: How to change text in "Order Confirmation" and "Welcome to our Store" page?
check out success
admin>>tools>>define page editor
select the right page and edit the text in there. If you want to change more than the text then you are going to need to edit tpl_checkout_success_default.php
Re: How to change text in "Order Confirmation" and "Welcome to our Store" page?
Is the a way to change this:
<h3 id="checkoutSuccessThanks" class="centeredContent"><?php echo TEXT_THANKS_FOR_SHOPPING; ?></h3>
"TEXT_THANKS_FOR_SHOPPING" content in tpl_checkout_success_default.php ??
Re: How to change text in "Order Confirmation" and "Welcome to our Store" page?
I don't quite understand.
The constant TEXT_THANKS_FOR_SHOPPING is defined in includes/languages/english/checkout_success.php or it's override version. SO, you can set whatever you want to appear between those <h3> tags by editing includes/languages/english/sheckout_success.php
Re: How to change text in "Order Confirmation" and "Welcome to our Store" page?
Thanks Nick, this fixes it...
Have a good day!
Sandra.
Re: How to change text in "Order Confirmation" and "Welcome to our Store" page?
You can actually edit the "Store Owner" and that from the Welcome Email by editing this file:
/home/robomatt/public_html/includes/languages/english/create_account.php
The lines of code reads:
Code:
define('EMAIL_CONTACT', 'For help with any of our online services, please email the store-owner: <a href="mailto:' . STORE_OWNER_EMAIL_ADDRESS . '">'. STORE_OWNER_EMAIL_ADDRESS ." </a>\n\n");
define('EMAIL_GV_CLOSURE','Sincerely,' . "\n\n" . STORE_OWNER . "\nStore Owner\n\n". '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'.HTTP_SERVER . DIR_WS_CATALOG ."</a>\n\n");
The things you should be changing is in bold red.
Don't forget to put it in your template folder within the includes/languages/english/ folder so you don't overwrite the default.
Re: How to change text in "Order Confirmation" and "Welcome to our Store" page?
Hello,
I followed the instruction on how to change the phrase store owner in the create account but it's still not working for me. Do you have any other helpful pointers?