SOLVED

Re: Issues with Token Link

Go to solution
kenmckown
Level 4

Re: Issues with Token Link

Sure, it is being added to a CTA like this:

kenmckown_1-1737735420784.png

 

SanfordWhiteman
Level 10 - Community Moderator

Re: Issues with Token Link

But I also need to see how that variable is used in the template.
kenmckown
Level 4

Re: Issues with Token Link

OK, this is the variable in the template:

<meta mktomodulescope="true" class="mktoString" id="CTA-url-text" mktoname="CTA URL" default="#" />
SanfordWhiteman
Level 10 - Community Moderator

Re: Issues with Token Link

Need to see the part of the template where that var is used!
kenmckown
Level 4

Re: Issues with Token Link

Sorry about that, here you go.

 

<td bgcolor="${CTA-bg-color}" style="font-family: 'Source Sans 3', sans-serif !important; border: 1px solid ${CTA-bg-color};font-family:Arial, sans-serif; font-size:14px; text-align: center; vertical-align: middle; color: ${CTAColor}; padding: 15px 15px;line-height:20px;font-weight:600;  text-transform:capitalize;border-radius:6px;" valign="middle"> <a style="outline: 0; color: rgb(0, 125, 187); 
text-decoration: none; text-decoration: none; color: ${CTAColor}; outline:none;" href="${CTA-url-text}"> <span style="color:${CTAColor};">${CTAText}</span> </a> </td>
SanfordWhiteman
Level 10 - Community Moderator

Re: Issues with Token Link

Well, there’s your problem!

 

It needs to be:

href="https://${CTA-url-text}"

 

If you’re wondering why the link still appears to work (though without tracking) I explained it here:

What happens if you leave the protocol (http:// or https://) off email links completely? It’s compli...