[Prestashop help] How to change Email logo in the Prestashop website?
In this post, we will help you how to change logo of an email in your Prestashop website (included Prestashop 1.6.x and Prestashop 1.7+). There have 2 solutions to do this.
1st – Upload Email logo from Prestashop Admin
- In Prestashop 1.6.0.x does not support this feature, so you must use 2nd solution in below post
- In Prestashop 1.6.1.x: Go to Preferences > Themes, click Invoice & Email Logos tab, upload your images for Mail logo field.
- In Prestashop 1.7.x+: Go to Improve > Design > Theme & Logo > Theme, click Invoice & Email Logos tab, upload your images for Mail logo field.
2nd – Directly change logo from Email template file
You can use this solution for all Prestashop’s version. A Prestashop email template file can be stored in some directories
- PRESTASHOP_ROOT/mails
- PRESTASHOP_ROOT/themes/YOUR_THEME/mails
- PRESTASHOP_ROOT/modules/YOUR_MODULE/mails
Open a *.html file that you want modify it, then change this line
<img src=”{shop_logo}” alt=”{shop_name}” />
Change {shop_logo} to a URL of your logo image, example we changed it to our logo
<img src=”https://buy-addons.com/store/images/logos/1/Logo_d2iq-9w.png” alt=”{shop_name}” />
Important: The URL in src attribute must start with http:// or https://, if you use a relative path, Email logo image can be wrong and customer can not see your logo in their email.
Example, this URL is wrong and customer can not see your logo in their email.
<img src=”/img/logos/1/Logo_d2iq-9w.png” alt=”{shop_name}” />
Leave a reply
You must be logged in to post a comment.