SOLVED

Re: Exclude clicks on our preference center link from report metrics

Go to solution
chris2929
Level 2

Hi All,

 

We recently replaced the default marketo unsubscribe with our own custom preference center link where folks can unsubscribe. Has anyone found a way to exclude these clicks from email performance reports?

 

Thanks!

1 ACCEPTED SOLUTION
SanfordWhiteman
Level 10 - Community Moderator

Set any link to untracked by adding class="mktNoTrack" to the <a> tag.

 

Then you’ll want to re-add the mkt_tok query parameter so the page is still capable of associating previously anonymous Munchkin sessions.

 

<a class="mktNoTrack" href="https://www.example.com/page?mkt_tok=##MKT_TOK##">Untracked, Retoked Example</a>

 

View solution in original post

3 REPLIES 3
SanfordWhiteman
Level 10 - Community Moderator

Do you still want to track those clicks — as Email Clicks — outside of the report? If not, just make the link untracked.

chris2929
Level 2

No we do not. 

 

How would I make the link untracked?

SanfordWhiteman
Level 10 - Community Moderator

Set any link to untracked by adding class="mktNoTrack" to the <a> tag.

 

Then you’ll want to re-add the mkt_tok query parameter so the page is still capable of associating previously anonymous Munchkin sessions.

 

<a class="mktNoTrack" href="https://www.example.com/page?mkt_tok=##MKT_TOK##">Untracked, Retoked Example</a>