Asked By
Bryan James
30 points
N/A
Posted on - 09/28/2012
Hello experts,
I need your help experts. How to disable or remove powered by prestashop? When the website is ready for launch we should have to remove it from the footer but how would I do that I don’t know what are the application needed to disable it, I hope you can give me ways on how to resolve this issue.
Thanks.
How to disable or remove powered by prestashop?
Hi,
Try going to the Prestashop administration page and click on modules then front office features and look for the CMS Block and configure. Uncheck all the boxes for "Powered by Prestashop".
Another is to edit directly from the PHP file and removing the code for Powered by Prestashop found in the footer block in the PHP file. To do this go to preferences then SEO & URLs then you will find all the PHP pages your site has. Click on the edit button and delete the "Powered by Prestashop" block click save. Its advice to make a copy of the code first before doing this. To make sure you have a backup of the original code. To do this press ctrl+A to select all the code and then copy the code to a notepad document for backup.
I hope this helps.
Thank you.
How to disable or remove powered by prestashop?
You can hide it using a bit of CSS knowledge. Follow the below steps:
-
First run your website in Google Chrome or Firefox Browser.
-
Then Select the text you want to hide and right click on the text.
-
Click on Inspect element. You’ll see all the HTML and CSS stuff on the web site on the window appears at the bottom of the page.
Most of the time text is written inside a DIV tag. Find the div tag id where the text is wrapped in. All you have to do is hide the DIV tag using the following code.
Â
<DIV Tag ID> { display:none;}