[Prestashop help] How to remove or translate, change “Ecommerce software by PrestaShop™” in footer?

In some Prestashop themes or in default Prestashop theme, Footer block always display a Text as “© 2019 – Ecommerce software by PrestaShop™”

If you want translate this Text, you can do:

Step 1: Go to Prestashop Backoffice,

In Prestashop 1.6, go to Localization > Translations

  • Type of translation = Installed modules translations
  • Select your theme = Core or choose a your theme (default-bootstrap)
  • Select your language = Language you want translate this text

software-by-prestashop-2

Translate 2 string: [1]Ecommerce software by %s[/1]  and [1] %3$s %2$s – Ecommerce software by %1$s [/1] in blockcms module to your language, then click Save

software-by-prestashop-6

In Prestashop 1.7, go to International > Translations

software-by-prestashop-4

Search “Ecommerce software“, then translated the string to your language

software-by-prestashop-5

If you want to change, remove “Ecommerce software by PrestaShop™” in footer, you can follow steps

Step 1:

In Prestashop 1.6

  • open a file: ROOT/themes/YOUR_THEME/modules/blockcms/blockcms.tpl, example ROOT/themes/default-bootstrap/modules/blockcms/blockcms.tpl

Remove or Change text block

{if $display_poweredby}
<section class=”bottom-footer col-xs-12″>
<div>
{l s='[1] %3$s %2$s – Ecommerce software by %1$s [/1]’ mod=’blockcms’ sprintf=[‘PrestaShop™’, ‘Y’|date, ‘©’] tags=[‘<a class=”_blank” href=”http://www.prestashop.com”>’] nocache}
</div>
</section>
{/if}

  • Open file: PRESTASHOP_ROOT\modules\blockcms\blockcms.tpl, remove or change this static text block

{if isset($display_poweredby) && $display_poweredby}
<li class=”last_item”>{l s='[1]Ecommerce software by %s[/1]’ mod=’blockcms’ sprintf=[‘PrestaShop™’] tags=[‘<a class=”_blank” href=”http://www.prestashop.com”>’]}</li>
{/if}

In Prestashop 1.7

  • Open file: PRESTASHOP_ROOT\themes\YOUR_THEME\templates\_partials\footer.tpl, example PRESTASHOP_ROOT\themes\classic\templates\_partials\footer.tpl

Remove or change this static text block

{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}

Step 2: Clear cache & reload your website

Related Articles

Leave a reply

You must be logged in to post a comment.