Expand my Community achievements bar.

Join us at Adobe Summit 2024 for the Coffee Break Q&A Live series, a unique opportunity to network with and learn from expert users, the Adobe product team, and Adobe partners in a small group, 30 minute AMA conversations.
SOLVED

Pathnames instead of full urls

Avatar

Level 1

I'd like all my data collection query parameters which contain urls to be shortened only to pathnames (e.g. pev1 to be changed from "https://example.com/subpage" to  "/subpage"). I know I can set s.pageURL to change the "g" parameter, but what about others? Is there any way to overwrite e.g. "pev1" or "oid" parameters?

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Option1:

DTM - Go to *`Property`* > **[ Edit Tool]** > Link Tracking and disable "Keep URL Parameters"

Option 2:

DTM - Go to link tracking rule > use custom code in place of UI

Add following code in custom code with in rule

var linkName = _satelite.getVar("Link PathName") //scrape href and convert to pathname in data element.

s.tl(this,'o', linkName);

Thanks,

Asheesh

View solution in original post

1 Reply

Avatar

Correct answer by
Community Advisor

Option1:

DTM - Go to *`Property`* > **[ Edit Tool]** > Link Tracking and disable "Keep URL Parameters"

Option 2:

DTM - Go to link tracking rule > use custom code in place of UI

Add following code in custom code with in rule

var linkName = _satelite.getVar("Link PathName") //scrape href and convert to pathname in data element.

s.tl(this,'o', linkName);

Thanks,

Asheesh