Expand my Community achievements bar.

SOLVED

Can't Get Analytics Plugins Working

Avatar

Level 4

Hello,

I can't get Adobe Analytics Plugins working.  Keep getting errors in console or Analytics doesn't load at all.  Below is a simple example using an Adobe plugin; here's my setup:

Analytics Extension

Manage the library for me (checked)

Custom Code Section (below)

2018-10-04_18-33-34.jpg

Load Rule

Set Variables > Custom Code

  if (_satellite.getVar('Page: External Campaign (URL)') != '') {

    s.events=s.apl(s.events,"event3",",",1)

  }

I've tried several variations of putting all of the plugin code in the Load Rule, Extension and half-in-half, they all generate some form of client error like below:

Uncaught (in promise) TypeError: t.apl is not a function

How do I get plugins working.

1 Accepted Solution

Avatar

Correct answer by
Level 9

You have to define your plugins before your doPlugins function and only call them within doPlugins. doPlugins will get executed after your rule so s.apl isn't defined yet.

As you posted an image and not code I am not gonna retype everything but to get you an idea:

s.apl=newFunction(...);

s.split=new Function(...);

s.usePlugins=true;

s.doPlugins=function(s) {

//...

}

View solution in original post

1 Reply

Avatar

Correct answer by
Level 9

You have to define your plugins before your doPlugins function and only call them within doPlugins. doPlugins will get executed after your rule so s.apl isn't defined yet.

As you posted an image and not code I am not gonna retype everything but to get you an idea:

s.apl=newFunction(...);

s.split=new Function(...);

s.usePlugins=true;

s.doPlugins=function(s) {

//...

}