Jump to content

[SOLVED] Change color pink customer name email alerts


Dan1

Recommended Posts

Email alerts module sends a New Order email, customer name is pink. How to change this?

Color is probably the old pink #DB3484.

Could be PS_MAIL_COLOR in modules/ps_emailalerts/ps_emailalerts.php but I don't know what to do with it.

Line 762

            '{invoice_block_txt}' => MailAlert::getFormatedAddress($invoice, "\n"),
            '{delivery_block_html}' => MailAlert::getFormatedAddress(
                $delivery, '<br />', array(
                    'firstname' => '<span style="color:'.$configuration['PS_MAIL_COLOR'].'; font-weight:bold;">%s</span>',
                    'lastname' => '<span style="color:'.$configuration['PS_MAIL_COLOR'].'; font-weight:bold;">%s</span>',
                )
            ),
            '{invoice_block_html}' => MailAlert::getFormatedAddress(
                $invoice, '<br />', array(
                    'firstname' => '<span style="color:'.$configuration['PS_MAIL_COLOR'].'; font-weight:bold;">%s</span>',
                    'lastname' => '<span style="color:'.$configuration['PS_MAIL_COLOR'].'; font-weight:bold;">%s</span>',
  

Edited by Dan1 (see edit history)
Link to comment
Share on other sites

On 9/4/2019 at 2:32 AM, jetway said:

 go to the Configuration Table in your database and change it there. Search for name: PS_MAIL_COLOR and put in the hex code of the color you want.

This worked thank you.

 

Some further instructions for those unfamiliar working with database (I had to figure this out):

In database search for PS_MAIL_COLOR selecting "the exact phrase as substring" and Select all inside tables. Change the color code in: 1 match in ps_configuration by clicking on Browse and Edit.

 

Edited by Dan1 (see edit history)
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...