Greybeard Junior Member Joined Aug 27, 2011 Messages 185 Reaction score 18 Nov 12, 2011 #1 Anyone know how to prevent Google Analytics from tracking my logins to WordPress? It's still doing it even though I set my preferences not to track them.
Anyone know how to prevent Google Analytics from tracking my logins to WordPress? It's still doing it even though I set my preferences not to track them.
B BreakAllTheClocks Regular Member Joined Apr 23, 2010 Messages 421 Reaction score 245 Nov 12, 2011 #2 There are several plugins that can do this. http://wordpress.org/extend/plugins/google-analyticator/ If you want to modify the php you can surround the GA code with if (!$user_ID) or if (!is_user_logged_in())
There are several plugins that can do this. http://wordpress.org/extend/plugins/google-analyticator/ If you want to modify the php you can surround the GA code with if (!$user_ID) or if (!is_user_logged_in())
Zapdos Power Member Joined Oct 22, 2011 Messages 597 Reaction score 710 Nov 12, 2011 #3 Above is likely assuming there is no user registrations. Code: if (!$someVarForAdminsOnly) { Your GA code here }
Above is likely assuming there is no user registrations. Code: if (!$someVarForAdminsOnly) { Your GA code here }
Greybeard Junior Member Joined Aug 27, 2011 Messages 185 Reaction score 18 Nov 13, 2011 Thread Starter Thread Starter #4 Thanks, Break. I didn't even search for a plug-in because I assumed there wasn't one to do this. I'll check them out to before going the code route. Anything to avoid extra code, lol.
Thanks, Break. I didn't even search for a plug-in because I assumed there wasn't one to do this. I'll check them out to before going the code route. Anything to avoid extra code, lol.