Add copyright notice to PrestaShop page (footer)
Oct 24, 2009 PrestaShop Customization, PrestaShop Tips
Is this useful? Like it.
PrestaShop default theme and many other third-party themes do not include a copyright notice at the bottom of the page.
You can easily add a copyright notice — with a “self-updating” current year display as well.
- Open this file:
\themes\YOUR_THEME\footer.tpl - Add this code right after {$HOOK_FOOTER}
<p>{l s='Copyright'} © {$smarty.now|date_format:"%Y"} {$shop_name|escape:'htmlall':'UTF-8'}. {l s='All Rights Reserved'}.</p>
![]()
If you want to display the year you start business together with the current year, you can use this instead:
<p>{l s='Copyright'} © 2008 - {$smarty.now|date_format:"%Y"} {$shop_name|escape:'htmlall':'UTF-8'}. {l s='All Rights Reserved'}.</p>
Remember to change the “2008″ to the year you actually start your business.
This has been tested on PrestaShop 1.2.4, but should work with other versions.













November 6th, 2009 at 2:52 am
Thanks, any idea how to get rid of the Powered by PrestaShop™ at bottom right?
November 6th, 2009 at 11:19 am
See this post:
http://www.prestashopthemes.net/how-to-remove-powered-by-prestashop-link.html