Hi Silvan,
The GA module should not, and would surprise me strongly, count the clicks
within the AmdinCentral.
The AdminCentral will not include the Javascript this module is using.
I assume, that you meant the clicks done on the Author instance by Authors
while editing pages?
What you also could do is, add on the author a different GA-Tracker ID on the
author than on the public instances.
By this you would track separately the behavior of your authors. Another
possibility to to to disabling the GA on author instance.
Excluding:
IN your webapp module's pom.xml you could exclude it with something alike.
Depends a bit how your modules are sturctured:
<dependency>
<groupId>info.magnolia</groupId>
<artifactId>magnolia-enterprise-webapp</artifactId>
<type>war</type>
</dependency>
<dependency>
<groupId>info.magnolia</groupId>
<artifactId>magnolia-enterprise-webapp</artifactId>
<type>pom</type>
<exclusions>
<exclusion>
<groupId>info.magnolia</groupId>
<artifactId>magnolia-module-google-analytics</artifactId>
</exclusion>
</exclusions>
</dependency>
But that would mean, that you exclude it for the whole war project:
-> two webapp modules, one for public instances, one for author with the
exclude.
Cheers
Christian
--
Context is everything:
http://forum.magnolia-cms.com/forum/thread.html?threadId=7e931db6-2b24-4c8e-9572-f4cdde69ce60
----------------------------------------------------------------
For list details, see http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: <[email protected]>
----------------------------------------------------------------