English 中文(简体)
Removal of homepage login users from analytics
原标题:

The problem I am having is filtering out the users that come to our homepage just to login, since we have the client button on the homepage (and yes I ve tried to get them to put it somewhere else).

I can t think of a way to do it because they don t look any different than potential clients, other than that they may visit more often and click on the button. Any ideas or software that might accomplish this?

问题回答

one way, is to associate a cookie with those users and either a) don t load the tracking code when cookie is present, or b) in Analytics Settings -> Filter Manager, add an exclusion pattern matching the cookie name. a) would be more flexible.

now, there s no way to tell if the user is going to stay on the main site or hop to the client area... so it might undercount in some cases. but you might find that better than the overcount showing up now...

a slightly more intrusive option, would be a JavaScript overlay / splash screen that shows up when you detect a user returning that asks them, "Would you like to go directly to your client area? [YES] [NO, TAKE ME TO THE MAIN SITE]". in that case, the tracking code wouldn t be loaded unless, they say are going to the main site...

if using the filter manager method, you ll want to register the variable like so:

<body onLoad=”javascript:pageTracker._setVar( my_cookie_name_guid )”>




相关问题
Web Analytics for Platform with Custom Events

I m building a platform that produces websites. Think wordpress.com as a similar example. Each site is going to be a subdomain of my domain like abc.mydomain.com or xyz.mydomain.com. I have a few ...

Removal of homepage login users from analytics

The problem I am having is filtering out the users that come to our homepage just to login, since we have the client button on the homepage (and yes I ve tried to get them to put it somewhere else). ...

Finding runs of a particular value

I have a table in Oracle 10 that is defined like this: LOCATION HOUR STATUS -------------------------------------- 10 12/10/09 5:00PM 1 10 12/10/09 6:00PM 1 ...

tracking download completions from a website/cdn

I have a Drupal website where users are clicking on a link that initiates a file download from a content delivery network (CDN). A script is tracking the number of users who click the link to begin ...

Update based on subquery fails

I am trying to do the following update in Oracle 10gR2: update (select voyage_port_id, voyage_id, arrival_date, port_seq, row_number() over (partition by voyage_id order by arrival_date) as ...

Google Analytics _trackEvent troubles

I m having some noob troubles with Google Analytics and _trackEvent. Using it seems straight forward in the documentation, but I can t get this simple example to work. The call to _trackEvent fails ...

热门标签