In my opinion, you can use the follow 3 methods.
1. Rename the 'gamification' folder name as 'gamification_'. root directory/modules/gamification
On 10/15/2018 at 11:55 AM, harun272 said:I've just changed the name of the gamificaton module by adding a few xxx at the end (gamification-xxx) and now backoffice is super speedy.
Do I need Merchant Experience module? No, I don't. And, as it seems the problem is coming from the Prestashop servers, I can later try by just renaming the module directory to it's original name and see if the problem is solved.
2. Disable addons request.
On 11/11/2019 at 3:28 AM, bonsaiko said:Hello,
I created this file override/classes/Tools.php and put this content in it :
<?php class Tools extends ToolsCore { public static function addonsRequest($request, $params = array()) { return false; } }It seems to be working great. I'm in Prestashop 1.6.1.17.
Can someone tell me if it's ok or if it can lead to problems ?
Thanks a lot.
On 10/10/2018 at 3:25 PM, Daresh said:It may not be enough, it's better to disconnect from Addons, my solution here: http://greenmousestudio.com/en/back-office
In Prestashop 1.7, due to changes in the architecture, it is not possible to make an override to the Tools class and apply this change.
To disconnect from addons you need to go do classes/Tools.php file, find this line:
protected static $is_addons_up = true;
and change it to:
protected static $is_addons_up = false;
And also, delete default_country_modules_list.xml fle from the config/xml folder.
3. Enable cache mode. Back office/Advanced Parameters/Performance
On 12/11/2021 at 2:53 PM, SmartDataSoft said:PrestaShop addons call slower the site. It is best good to disable them and set the cache mode enable. It will faster the site
Thank you
Thank you.