Jump to content

[ASTUCE] Désactiver Google Analytics quand installé en local


Recommended Posts

Avec WAMP, et un vHost configuré, je n'ai pas d'utilité de Google Analytics ...

Cependant, afin de garder la même base de données en local que sur le serveur, je n'ai pas envie de désactiver ce module.

Mais, en local, cela ne sert à rien ...

La solution :

intégrer le code suivant

        if ($_SERVER['REMOTE_ADDR'] == '127.0.0.1') return '';



dans \modules\ganalytics\ganalytics.php, au niveau de :

   function hookHeader($params)
   {
       global $smarty, $cookie;

       if ($_SERVER['REMOTE_ADDR'] == '127.0.0.1') return '';



   function hookOrderConfirmation($params)
   {
       global $smarty;

       if ($_SERVER['REMOTE_ADDR'] == '127.0.0.1') return '';



Sous Firefox, gain de performances à l'affichage !!

:-)

Link to comment
Share on other sites

  • 1 month later...

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...