Re: removing mkt_token from skeleton email template button

Anonymous
Not applicable

removing mkt_token from skeleton email template button

We've had issues before with links that include the mkt_token but when I'm using the skeleton template for emails, I don't see how to remove it via UI. Is there a way to remove mkt_token but we still want to track the link.

4 REPLIES 4
Justin_Cooperm2
Level 10

Re: removing mkt_token from skeleton email template button

There are ways to do anything you're trying to do. But, what "issues" have you seen? We don't recommend removing the mkt_tok from your links unless there is good reason. This is what enables Marketo's munchkin tracking to identify the lead and associate anonymous activity correctly.

Anonymous
Not applicable

Re: removing mkt_token from skeleton email template button

In one of our emails, we included the mkt_tok and when a user clicks on it, it loads a page of code instead of the actual page. And this has happened several times.

What are the ways to remove the token from the template?

SanfordWhiteman
Level 10 - Community Moderator

Re: removing mkt_token from skeleton email template button

If having mkt_tok appended to your links creates a problem, that's something that can (and should!) be fixed on your webserver. An example of a potential problem is here: http://blog.teknkl.com/big-brands-bad-code/.  In this case, the webserver had a broken notion of what was and wasn't allowed in a standard URL.  Some testing by your devs should show them what they're doing wrong -- it might even be exactly what's in my blog post, so you they should check that out.

Like Justin said, turning off mkt_tok with no other way to associate leads kills fundamental functionality of Marketo.  It can't be better to live without tracking than to work out the probs and fix them (they're never that hard!).

Justin_Cooperm2
Level 10

Re: removing mkt_token from skeleton email template button

You should only remove it for links that are pointing to that individual page that you're seeing issues then. It generally means you have some JavaScript that is trying to do things with the query string of the URL and can't handle it when mkt_tok is present for some reason (that's actually a bug in whatever 3rd party script is doing that btw). All you do is add class="mktNoTok" to your <a> tag. See this:

http://docs.marketo.com/display/DOCS/Disable+Tracking+for+an+Email+Link

It can be done on any <a> tag and you can edit the Marketo Starter Templates to have that class for links. You'll also see that in the rich-text editor, users have the ability to uncheck "include mkt_tok" when they add a link through the rich text editor for a text element in the email.

Justin