LinkTracking Code? | Community
Skip to main content
Level 4
January 25, 2019
Solved

LinkTracking Code?

  • January 25, 2019
  • 2 replies
  • 1366 views

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?

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 Urs_Boller

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.

2 replies

Urs_Boller
Community Advisor
Urs_BollerCommunity AdvisorAccepted solution
Community Advisor
January 25, 2019

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.

Level 4
January 25, 2019

Hello, Urs.

thank you for the answer.

This has helped me a lot:

danke!