v1.6-v1.7 Prestashop Minimalist Pro - Email templates

Root

System Boss
Staff member
Big Boss
Joined
Jun 1, 2018
Messages
1,137
Reaction score
18,381
Points
113
NullCash
78,098
6.png


Demo: https://addons.prestashop.com/en/pr...tes/27467-minimalist-pro-email-templates.html

Download
 

Attachments

  • v1.6-v1.7 Prestashop Minimalist Pro - Email templates.zip
    216.2 KB · Views: 187
Last edited by a moderator:

tali656

Well-known member
Master
Diamond
Elite
Joined
Dec 28, 2018
Messages
448
Reaction score
880
Points
93
NullCash
1,215
I think best or most beautiful and simple email template, thanks!
 

Takio

Well-known member
Master
Diamond
Elite
Joined
Feb 13, 2019
Messages
494
Reaction score
1,673
Points
93
NullCash
13,957
Honesly, I am a little bit lazy to revamp the mail part during my upgrade to 1.7, and this Minimalist set look fine... so let's keep it easy. :cool:
Thanks guys!
 

Delaney

Member
XNullUser
Joined
Feb 25, 2019
Messages
262
Reaction score
9
Points
18
NullCash
51
very clean
 

Takio

Well-known member
Master
Diamond
Elite
Joined
Feb 13, 2019
Messages
494
Reaction score
1,673
Points
93
NullCash
13,957
A little trick to make your life easy...

One think that's always annoy me, is the copyright/advertisment mention at the footer of each email.

This is how to remove properly the Ecommerce software by Prestashop at the bottom of the pages, once and for all! :geek:

Go to themes\classic\templates\_partial and open the file footer.tpl with NotePad++

At the end of the footer.tpl (around line 44) you will see this block:

Code:
<div class="row">
      <div class="col-md-12">
        <p class="text-sm-center">
          {block name='copyright_link'}
            <a class="_blank" href="http://www.prestashop.com" target="_blank">
                 {l s='%copyright% %year% - Ecommerce software by %prestashop%' sprintf=['%prestashop%' => 'PrestaShop™', '%year%' => 'Y'|date, '%copyright%' => '©'] d='Shop.Theme.Global'}
            </a>
          {/block}
        </p>
      </div>
</div>

Did you notice, the 4 Prestashop?
Just replace them by the name of your website, like this:

Code:
  <a class="_blank" href="http://www.MYWEBSITE.com" target="_blank">
     {l s='%copyright% %year% - Ecommerce software by %MYWEBSITE%' sprintf=['%MYWEBSITE%' => 'MYWEBSITE™', '%year%' => 'Y'|date, '%copyright%' => '©'] d='Shop.Theme.Global'}
</a>

Save your file, and it's done. It was simple, no?

Now ALL (did you notice the caps?) yours mails will have your website copyright mention instead of the Prestashop copyright mention :cool:

Of course you can replace this copyright part by anything else, like this for exemple:

Code:
<div class="row">
      <div class="col-md-12">
        <p class="text-sm-center">
          Please do not reply to this email from your email, as messages received at this email address are not read. For a quick response to your question, sign in to your account and click on the 'Contact Us' link (at the bottom of any page).
        </p>
      </div>
</div>

... or any special announcement (closed dates for holidays or inventary, publicity, etc...)

Enjoy ;)

Note: if you don't create a mails folder in your /themes/name-of-the-theme folder, don't forget to keep a copy from your modification, without that, your modification will be remplaced by the original fine each time you will upgrade Prestashop.
 
Last edited:

omnikohh

Member
XNullUser
Joined
Mar 2, 2019
Messages
172
Reaction score
0
Points
16
NullCash
0
thank you very much

---- Automatically Merged Double Post ----

thank you very much
 
Last edited:
Top