Skip to main content
pradeep_07
Level 4
September 30, 2022
Solved

Disabling Adobe Analytics Via Data collection

  • September 30, 2022
  • 2 replies
  • 1187 views

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

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by yuhuisg

One quick way to "short-circuit" AA:

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

s.abort = true;

 

2 replies

Jennifer_Dungan
Community Advisor and Adobe Champion
Community Advisor and Adobe Champion
October 1, 2022

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.

yuhuisg
Community Advisor
yuhuisgCommunity AdvisorAccepted solution
Community Advisor
October 6, 2022

One quick way to "short-circuit" AA:

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

s.abort = true;