How to Remove or Change the PrestaShop “Ecommerce software by PrestaShop™” Footer Text
Want to remove or customize the default PrestaShop copyright message in your shop’s footer? This easy guide shows exactly how, even for beginners. You’ll be able to add your shop name or just remove the line completely.
- Open your FTP program (such as FileZilla) or use your hosting File Manager.
-
Go to your PrestaShop site files at:
/themes/hummingbird/templates/_partials/ -
Find and open the file named:
footer.tpl -
Search for the following lines inside footer.tpl:
<div class="copyright">(You may see slight differences, but it will include "Ecommerce software by PrestaShop™".)
{l s='© %year% - Ecommerce software by PrestaShop™' d='Shop.Theme.Global' sprintf=['%year%' => "Y"|date]}
</div>
Remove or Change the Footer Text
- To remove: Delete those lines from the file.
-
To use your own copyright:
<div class="copyright">(Change "Your Shop Name" as you like.)
© 2025 Your Shop Name. All rights reserved.
</div> -
To auto-update the year:
<div class="copyright">
© {date('Y')} Your Shop Name. All rights reserved.
</div>
- Save the file and upload it if you downloaded it.
-
Clear your PrestaShop cache:
In your back office, go to Advanced Parameters > Performance and click Clear cache. -
Refresh your website. To ensure you see your change (not a cached version), open your site in Incognito/Private mode.
Tip: Incognito is best practice for all PrestaShop front office testing!
Note: If you update your theme, your changes may be overwritten. Just repeat these steps if needed.