Hello
I'm trying to track the outbound links right now,
and a script contains the following code.
s.events=s.events?s.events:'';
s.linkTrackVars=s.linkTrackVars?s.linkTrackVars:'events';
s.linkTrackEvents=s.linkTrackEvents?s.linkTrackEvents:'event19,event20';
s.events+=",event20="+_satellite.getVar('ClickOutRevenue');
can someone tell me what the code is good for ?
Do I have to use the code if I want to track links?
Solved! Go to Solution.
Views
Replies
Total Likes
hi
I try to give you some hints but you need to look in reportsuite settings for some more information. explanation line by line:
1) declare "events" if not set
2) declare "linktrackvars" if not set as recommended by Adobe
(remark: 1+2 are just a setup for next steps)
3) add custom events 19 + 20 to call (see RS setting what it is
4) set counter for event 20 to a value fetched from dataElement. see the corresponding dataElement what data it is
see here: s.linkTrackVars
according to the code I assume that you receive the following information
a) event19 just count how many clicks you have
b) event20 gives each click a value and counts it up (for each visitor)
having those two events allows further calculation, eg. "event20 / event19" is the average value of a click.
Views
Replies
Total Likes
hi
I try to give you some hints but you need to look in reportsuite settings for some more information. explanation line by line:
1) declare "events" if not set
2) declare "linktrackvars" if not set as recommended by Adobe
(remark: 1+2 are just a setup for next steps)
3) add custom events 19 + 20 to call (see RS setting what it is
4) set counter for event 20 to a value fetched from dataElement. see the corresponding dataElement what data it is
see here: s.linkTrackVars
according to the code I assume that you receive the following information
a) event19 just count how many clicks you have
b) event20 gives each click a value and counts it up (for each visitor)
having those two events allows further calculation, eg. "event20 / event19" is the average value of a click.
Views
Replies
Total Likes
Hello, Urs.
thank you for the answer.
This has helped me a lot:
danke!
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies
Views
Likes
Replies