0

I'm trying to use Google Analytics' recently added feature that allows you to designate an event as a non-interaction event using the "opt_noninteraction" flag. However, when I set the flag to both true or false, the event fails to fire.

blim8183
  • 768
  • 1
  • 8
  • 23

1 Answers1

2

My guess is you're probably not setting the value parameter. Make sure you have the value parameter in there (the 4th parameter) just before true as follows.

Value Parameter Undefined _gaq.push(['_trackEvent', 'Examplecategory', 'ExampleAction', 'ExampleLabel',, true]);"

Value Parameter Defined _gaq.push(['_trackEvent', 'Examplecategory', 'ExampleAction', 'ExampleLabel', 1 , true]);"

Jim Snyder Empirical Path

Jim Snyder
  • 36
  • 1