To customize the footer, go to:
/your_theme/templates/_partials/footer.tpl
and you will find this code:
{l s='%copyright% %year% - Ecommerce software by %prestashop%' sprintf=['%prestashop%' => 'PrestaShop™', '%year%' => 'Y'|date, '%copyright%' => '©'] d='Shop.Theme'}
You have 2 options now:
1. You can remove this whole string and simply write the text you want to display
However, if your website contains multiple languages, this text will not be possible to translate. Also every year you will have to update the year in the footer manually.
2. I suggest that you can only rename the word "Prestashop™" to the name of your eshop:
{l s='%copyright% %year% - Ecommerce software by %prestashop%' sprintf=['%prestashop%' => 'THIS IS MY ESHOP™', '%year%' => 'Y'|date, '%copyright%' => '©'] d='Shop.Theme'}
Now you can go to the back office:
Sidebar > International > Translations. Select "theme translations", your theme and desired language. On the next page, in the left column, open "Shop" tab and search for "Theme".
There's a small pagination at the top of the right column now, go to the second page and you will find an option to translate "Ecommerce software by".
By this way, you can translate the footer into all languages and it will contain the name of your eshop
/your_theme/templates/_partials/footer.tpl
and you will find this code:
{l s='%copyright% %year% - Ecommerce software by %prestashop%' sprintf=['%prestashop%' => 'PrestaShop™', '%year%' => 'Y'|date, '%copyright%' => '©'] d='Shop.Theme'}
You have 2 options now:
1. You can remove this whole string and simply write the text you want to display
However, if your website contains multiple languages, this text will not be possible to translate. Also every year you will have to update the year in the footer manually.
2. I suggest that you can only rename the word "Prestashop™" to the name of your eshop:
{l s='%copyright% %year% - Ecommerce software by %prestashop%' sprintf=['%prestashop%' => 'THIS IS MY ESHOP™', '%year%' => 'Y'|date, '%copyright%' => '©'] d='Shop.Theme'}
Now you can go to the back office:
Sidebar > International > Translations. Select "theme translations", your theme and desired language. On the next page, in the left column, open "Shop" tab and search for "Theme".
There's a small pagination at the top of the right column now, go to the second page and you will find an option to translate "Ecommerce software by".
By this way, you can translate the footer into all languages and it will contain the name of your eshop
