Jump to content

Need help with emails help. Im new.


Recommended Posts

Hi,
I am new so please bear with me.
Is there a way to configure the emails that get sent to customers? Because right now the color in the "order confirmation" email is all pink and I would like to change the color. Is there a way to do that?

Thanks
David

Link to comment
Share on other sites

Perfect! Thank You So much.
One last question.
What folder would I need to edit to chang the color of the "My accounts" Block(when a user is logged in). It is currently DB3484 but i would like to change it.
Thanks
David

Link to comment
Share on other sites

In general, all the CSS code is in /themes/prestashop/css/global.css (some modules and the email files are an exception).

You can always "View Source" in the browser and check for the class or id of the surrounding tag.

In this case class="block myaccount" is in the

around that whole block

"block" is the default module block look, and "myaccount" sets the custom details (in global.css)
Link to comment
Share on other sites

  • 3 weeks later...

How do I add the tracking number to the in_transit.html file?

I tried adding "Your tracking number is: {shipping_number}" but that displays exactly how I coded it. What do I put inside the {brackets}?

Do I have to define this somewhere?

I wish PS had proper documentation!


EDIT: NEVERMIND, figured it out... For those that care:

1. Go to your admin folder --> tabs -->and look for: 'AdminOrders.php'

2. Find the line containing the following code (for me it is line 83):

 '{followup}' => str_replace('@', $order->shipping_number, $carrier->url),



3. Add a new line of code below that line:

 '{shipping_number}' => $order->shipping_number,



4. Save the AdminOrders.php file

5. Go to the mails folder and open in_transit.html

6. Add somewhere in the file:

Your tracking number is: {shipping_number}



7. Save the in_transit.html file!

Voila, your tracking numbers are now sent in the emails when you enter the tracking number in the backend!

Tested it and it is working 100%.

Link to comment
Share on other sites

  • 2 months later...

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...