Expand my Community achievements bar.

Join us for the next Community Q&A Coffee Break on Tuesday April 23, 2024 with Eric Matisoff, Principal Evangelist, Analytics & Data Science, who will join us to discuss all the big news and announcements from Summit 2024!
SOLVED

Disabling Adobe Analytics Via Data collection

Avatar

Level 6

Hi,

How can we disable Adobe Analytics via Data collection without removing the script from the page ? Disabling all events and page load rules will stop Analytics tracking ? or do we need to disable the extensions as well?

 

Thanks,

 

Pradeep

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

One quick way to "short-circuit" AA:

In your Adobe Analytics extension's custom code, inside your doPlugins() code block, add

s.abort = true;

 

View solution in original post

2 Replies

Avatar

Community Advisor

Disabling the rules that trigger beacons should be enough... that is what actually triggers the "tracking". The Data Elements code will still run and create the satellite variables, but without the beacons nothing will actually be done with those values.

Avatar

Correct answer by
Community Advisor

One quick way to "short-circuit" AA:

In your Adobe Analytics extension's custom code, inside your doPlugins() code block, add

s.abort = true;