newbie20 Posted July 9, 2022 Share Posted July 9, 2022 my site is multi languages (in prestashop 1.7.8 ) 1-how can i completely delete "2022 - Ecommerce software by PrestaShop" in all languages ? 2-if the answer is yes , then will it again come back ,when i upgrade my prestashop to recenter versions ? Link to comment Share on other sites More sharing options...
Ress Posted July 11, 2022 Share Posted July 11, 2022 You can modify/delete in: your_prestashop_root/themes/classic/templates/_partials/footer.tpl , copyright_link block. If you are upgrading prestashop, and don't want to lose this change, you will need to disable the "Upgrade default theme" option on the upgrade module configuration page. Or, another solution, you can make a child theme, so you won't have any problem. https://devdocs.prestashop.com/1.7/themes/reference/template-inheritance/parent-child-feature/ Link to comment Share on other sites More sharing options...
newbie20 Posted July 12, 2022 Author Share Posted July 12, 2022 (edited) On 7/11/2022 at 11:31 AM, Ress said: You can modify/delete in: your_prestashop_root/themes/classic/templates/_partials/footer.tpl , copyright_link block. If you are upgrading prestashop, and don't want to lose this change, you will need to disable the "Upgrade default theme" option on the upgrade module configuration page. Or, another solution, you can make a child theme, so you won't have any problem. https://devdocs.prestashop.com/1.7/themes/reference/template-inheritance/parent-child-feature/ thanks alot for your answer should i comment following lines in that file or another tile of source??? {block name='copyright_link'} <a href="https://www.prestashop.com" target="_blank" rel="noopener noreferrer nofollow"> {l s='%copyright% %year% - Ecommerce software by %prestashop%' sprintf=['%prestashop%' => 'PrestaShop™', '%year%' => 'Y'|date, '%copyright%' => '©'] d='Shop.Theme.Global'} </a> {/block} Edited July 12, 2022 by newbie20 (see edit history) Link to comment Share on other sites More sharing options...
Geo Burlibasa Posted July 12, 2022 Share Posted July 12, 2022 Just comment the {block} using {* CODE HERE *}. Creating a child theme can sometimes be problematic if the theme/modules are already configured, it's usually recommended to be done exactly after installing the theme, and not after. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now