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!
Solved! Go to Solution.
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>
Do you still want to track those clicks — as Email Clicks — outside of the report? If not, just make the link untracked.
No we do not.
How would I make the link untracked?
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>