Jump to content

HELP: Modify Subject Header of Order Statuses Emails


Recommended Posts

  • 7 months later...

only solution I found is to mod the lang file...

/mail/en/lang.php

add to the file...

$_LANGMAIL['Order confirmation'] = 'Your Order';

got the inspiration in looking at the FR lang mod... if it can be change to french... it can change to the text we need...

hope that helps :)

<?php

global $_LANGMAIL;
$_LANGMAIL = array();
$_LANGMAIL['Order confirmation'] = 'Your Order';


?>

Link to comment
Share on other sites

If you change the title of the order status in your admin>orders>statuses tab it will change the email subject to that.

for example. if you change the status ffrom "shipped" to " Your order has been dispatched", the email subject will also change to that.

Link to comment
Share on other sites

In the french mails folder there is a lang.php file. If you open that you will see the email subject for various emails. Copy that file over into whichever language folder you want and change the end of the lines to whatever you want the subject to be.

Below is my code for order confirmation email.

$_LANGMAIL['Order confirmation'] = 'Your order has been Confirmed';

Link to comment
Share on other sites

yup :) that was exactly what I did above... however... it seems strange that there's no proper place to do the mod... but perhaps it might be better to do a lang mod... wish there is a MASTERFILE in our template... that way we can make mroe extensive changes///

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...