After some modifications I managed to solve this problem, the site loads normally and apparently Hide My WP does not overload the site for the moment.
I realized that I was still in PHP 6. But that brings me to another problem, the passage in PHP 7 has rendered obsolete the function create_function () I find myself 2 with 2 deprecated errors, I do not know if it affects the plugin but is there a way to solve it?

The codes :
if (version_compare( $wp_version, '4.7', '>=') && !$this->opt('api_disable') && trim($this->opt('api_base'),' /') && $this->opt('api_base') !='wp-json') {
$this->top_replace_old[]=" rel='https://api.w.org/'";
$this->top_replace_new[]=" ";
add_filter('rest_url_prefix', create_function('', 'return "' . $this->opt('api_base') . '";'));
}
add_filter('the_generator', create_function('', 'return "";'));
-
This reply was modified 7 years, 1 month ago by
khoeos.