Jump to content

I want to remove powered by Prestashop from emails !


Recommended Posts

Go to modules>mail alerts>mails>ur lanague for english example en> new order html files

open line 65

 

 

<p style="width: 100%; text-align: center;"><a style="color: #db3484; font-weight: bold; text-decoration: none;" href="{shop_url}">{shop_name}</a> powered with <a style="text-decoration: none; color: #374953;" href="http://www.prestashop.com/">PrestaShop™</a></p>

Link to comment
Share on other sites

  • 4 months later...

You can use Notepad++ and automate the process by following the instructions below.

 

Remove “powered with PrestaShop™” from emails
Well this is not so easy to accomplish  but I will tell you the easy way.
All emails are saved in mails directory it is located in Prestashop root directory:
 
You should see separate directory for every language in mails direcotry.
 
If you go to some language directory you’ll see many files. 
 
Almost every file contains one of these lines (look near bottom of the file):
 
In html files:
1.4
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered by <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShopâ„¢</a>
1.5
<a style="color: {color}; font-weight: bold; text-decoration: none;" href="{shop_url}">{shop_name}</a> powered by <a style="text-decoration: none; color: #374953;" href="http://www.prestashop.com/">PrestaShop™</a>
or in txt files:
 
1.4 & 1.5
{shop_url} powered by PrestaShop™
 
 
OK first of all download whole mails directory to your computer. Now it is possible to check every file and change lines.
 
In html files we need to delete or change this part:
 
1.4
powered by <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShopâ„¢</a>
1.5
powered by <a style="text-decoration: none; color: #374953;" href="http://www.prestashop.com/">PrestaShop™</a>
 
In txt files we need to delete or change this part:
 
powered by PrestaShop™ 
 
This task easy but we have huge amount of files it will be long and tedious task to change one file after another. There is a better solution.
 
OK let’s say we downloaded mails directory to our C:\ drive.
 
Now you have to download Notepad ++ and install it in your computer.
 
Its a free download.
 
Install Notepad ++ and start the program. Go to Search->Find In Files: 
 
copy the powered by part from above and paste it in the Find what text box,
delete anything in the replace with text box and change the Directory to the mails directory ie (c:\mails\)
and click replace in files
 
Now copy the powered by PrestaShop™ from above and paste that in the find what - all other same as above and click replace in files, that it your done.
  • Like 5
Link to comment
Share on other sites

  • 10 months later...

hey guys i found this 

http://www.templatemonster.com/help/footer-links-and-copyright-notification-in-prestashop.html

i think this can solve the problem but when i tried it it shows the following 

 

 

Warning! Your PHP configuration limits the maximum number of fields allowed in a form
2000 for max_input_vars.
Please ask your hosting provider to increase this limit to 2171 at least, or you will have to edit the translation files.

Link to comment
Share on other sites

hey guys i found this 

http://www.templatemonster.com/help/footer-links-and-copyright-notification-in-prestashop.html

i think this can solve the problem but when i tried it it shows the following 

 

 

Warning! Your PHP configuration limits the maximum number of fields allowed in a form

2000 for max_input_vars.

Please ask your hosting provider to increase this limit to 2171 at least, or you will have to edit the translation files.

 

possible solutions:

max_input_vars and prestashop

 

if none of them will work for you, it will be necessary to contact with your hosting provider (as it is suggested in message you pasted)

Link to comment
Share on other sites

  • 2 weeks later...

Hi,

 

Tell me if I am wrong, but isn't this edited in the translations "EMAIL TRANSLATIONS"

 

Do we have to go through each one, one by one and remove the "Powered by" ?

 

Also, is it in the core, default theme, or our custom theme; I'm not sure?

 

(Response for Version 1.6.0.9)

 

Hi Ricky,

 

Yes, that's correct. It's Localisation>Translations>Modify Translations>Type of Translation>Email Template Translations.

 

As I understand it, you need to do this in both the "Core (no theme selected)" and the current theme you are using.

 

You need to remove the "Powered by" associated code from both the HTML version and TXT version of each email type in both the "Core" and "Modules" email categories.

 

There is no need to save between selecting each email type; simply work through them all and save at the very end. I can verify that this works, as for me personally I had a total of 180 email templates to alter, but yet by not saving until the very end it only took me approximately 10 minutes to complete. I tried this method as saving in between each individual change would have taken hours on my rather slow shared sever.

 

Finally, I believe if you have a multilingual site you also need to go through and complete this process for each language you have available in your front office.

 

A brief tutorial on the process can be found here:

 

http://www.configure.club/remove-powered-by-prestashop-from-prestashop-mail-notifications/

 

 

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

I was able to change the email footer globally.

1) change in mail folder in root folder

2)mail folder in theme

3) mail folder in all modules sub folder because modules can have there own mail template

 

The task can be done easily via notepad++ or sublime or eclipse software - all are free

 

Clear cache and recompile template

 

You check my changes at www.abhishekproducts.in

Link to comment
Share on other sites

  • 1 month later...
  • 2 months later...
  • 6 months later...
  • 1 year later...

 

You can use Notepad++ and automate the process by following the instructions below.

 

Remove “powered with PrestaShop™” from emails
Well this is not so easy to accomplish  but I will tell you the easy way.
All emails are saved in mails directory it is located in Prestashop root directory:
 
You should see separate directory for every language in mails direcotry.
 
If you go to some language directory you’ll see many files. 
 
Almost every file contains one of these lines (look near bottom of the file):
 
In html files:
1.4
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered by <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShopâ„¢</a>
1.5
<a style="color: {color}; font-weight: bold; text-decoration: none;" href="{shop_url}">{shop_name}</a> powered by <a style="text-decoration: none; color: #374953;" href="http://www.prestashop.com/">PrestaShop™</a>
or in txt files:
 
1.4 & 1.5
{shop_url} powered by PrestaShop™
 
 
OK first of all download whole mails directory to your computer. Now it is possible to check every file and change lines.
 
In html files we need to delete or change this part:
 
1.4
powered by <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShopâ„¢</a>
1.5
powered by <a style="text-decoration: none; color: #374953;" href="http://www.prestashop.com/">PrestaShop™</a>
 
In txt files we need to delete or change this part:
 
powered by PrestaShop™ 
 
This task easy but we have huge amount of files it will be long and tedious task to change one file after another. There is a better solution.
 
OK let’s say we downloaded mails directory to our C:\ drive.
 
Now you have to download Notepad ++ and install it in your computer.
 
Its a free download.
 
Install Notepad ++ and start the program. Go to Search->Find In Files: 
 
copy the powered by part from above and paste it in the Find what text box,
delete anything in the replace with text box and change the Directory to the mails directory ie (c:\mails\)
and click replace in files
 
Now copy the powered by PrestaShop™ from above and paste that in the find what - all other same as above and click replace in files, that it your done.

 

 

Hi

i did all that, the files now does not contain anything related with prestashop.

even in the translations don't appear nothingf related, i did all the changes , but i'm still receiving the emails with Powered by prestashop.

don't know more what i can change. 

i also deleted the cache.

 

i am running prestashop 1.7.1.1

 

please help

  • Like 1
Link to comment
Share on other sites

  • 1 month later...

Ladies & Gentlemans,

 

it was though but found a solution - PrestaShop 1.7.1.2

 

You need to make some changes in two folders (html & txt files)

 

@themes/classic/mails/pt  * pt can be your language example "es" "en" and so on....

 

@mails/pt pt can be your language example "es" "en" and so on....

 

Cheers!

Edited by lseeyou (see edit history)
  • Like 1
Link to comment
Share on other sites

Thank you...

Go to modules>mail alerts>mails>ur lanague for english example en> new order html files
open line 65


<p style="width: 100%; text-align: center;"><a style="color: #db3484; font-weight: bold; text-decoration: none;" href="{shop_url}">{shop_name}</a> powered with <a style="text-decoration: none; color: #374953;" href="http://www.prestashop.com/">PrestaShop™</a></p>

Link to comment
Share on other sites

×
×
  • Create New...