Reputation: 741
We've implemented Event Tracking code that runs for a while now (more than a week), but we don't see any events in the Events reporting page. I've tested with Google Analytics Debugger chrome extension, which recognizes the event and claims it's error-less. This means the event is sent to google.
Additional info that might help - we're using virtual page when calling to _trackPageview
(and this is the only call to _trackPageview
we have).
Initialization example: _gaq.push(['_trackPageview', '/v/user/store/catalog'])
An example of an event: _gaq.push(['_trackEvent','LinkToProduct','CatalogProductbox','3',0,false])
What can I do to debug this further or solve it?
Upvotes: 0
Views: 372
Reputation: 7177
/v/user/store/catalog
?Upvotes: 0