dd90503 Posted January 9, 2010 Share Posted January 9, 2010 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 More sharing options...
tomerg3 Posted January 9, 2010 Share Posted January 9, 2010 You can edit the entire email in /mails/en (or other languages).Look for the .html file, you can edit it any way you want, I think you can also use an editor like dreamweaver for it. Link to comment Share on other sites More sharing options...
dd90503 Posted January 9, 2010 Author Share Posted January 9, 2010 Thank youI am still a little confused, when I go to edit it there is no color code in the html? Where can i find it?ThanksDavid Link to comment Share on other sites More sharing options...
tomerg3 Posted January 9, 2010 Share Posted January 9, 2010 /mail/en/order_conf.htmlLine #19 Order details background-color:#DB3484As I said before, it may be easier for you to use some sort of an editor to modify this, but if you just want to change that color, this is the place. Link to comment Share on other sites More sharing options...
dd90503 Posted January 9, 2010 Author Share Posted January 9, 2010 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. ThanksDavid Link to comment Share on other sites More sharing options...
tomerg3 Posted January 9, 2010 Share Posted January 9, 2010 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 More sharing options...
sm3004 Posted January 31, 2010 Share Posted January 31, 2010 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 file5. Go to the mails folder and open in_transit.html6. 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 More sharing options...
kship Posted April 7, 2010 Share Posted April 7, 2010 I am having trouble locating where to enter the tracking number once it is shipped? Can anyone tell me where to add that information?Thanks,Ken Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now