Jump to content

How to cut ties with prestashop in back office


Recommended Posts

I want to remove all communication from my site to prestashop. It slows down load, its info I don't need as I get emails, and as we have seen before it leaves site open to risk

 

What code do I edit or delete to remove all links into back office?

 

Thanks!

Link to comment
Share on other sites

Edit /admin/tabs/AdminHome.php

look for


 if (!isset($cookie->show_screencast))
 $cookie->show_screencast = true;

and add the following line below


 if (!isset($cookie->show_screencast))
 $cookie->show_screencast = true;

 $cookie->show_screencast = false; //This will disable the request to the Prestashop server.

Link to comment
Share on other sites

Hi tomerg3 - I can;t find this code - I wonder if it has been changed in the new release?. Closest I can find is

 

if ($employee->bo_show_screencast)
echo'
<div id="adminpresentation">
<iframe src="'.$protocol.

Link to comment
Share on other sites

I'm still in 143 so the coding is different it appears

 

Is there a simple way to maybe just comment out screencasts.prestashop.com or something?

 

I imagine there are a dozen various files versions so line number makes it hard to work out.

 

Appreciate the help

Link to comment
Share on other sites

  • 7 months later...

in the back office there is a right column or div - that includes; A Good Beginning, PrestaShop Link, PrestaShop News blocks.

 

I thought there was a check box someplace to turn this off for employees, but that is what I am looking to do. The shop employees do not need to be reading the PrestaShop newsletters, access these forums, go to the addon.prestashop.com links, etc hope this explains exactly what I mean.

Link to comment
Share on other sites

Ah ok, that's a different question from what was introduced in this thread, but for what you're looking to do, you just need to go to Preferences in your Back Office and set "Hide Optimization Tips" to "Yes."

 

I hope this helps.

 

-Mike

 

Mike -

 

Sorry if I took the topic incorrectly.

 

the preference you indicated had already been set to "yes" as indicated

Link to comment
Share on other sites

×
×
  • Create New...