I'm having an issue with custom fields & putting them as the href an <a> tag.
I can render the value normally in a plain body html template, however, when adding it to a link, it doesn't work.
The link populates to a #. Anyone else having this issue?
This template works to display the custom field:
<html>
<body>
<h1>[[custom.surveylink]]</h1>
</body>
</html>
However, this does not work:
<html>
<body>
<h1>Your Link is [[custom.surveylink]]</h1>
<a href="[[custom.surveylink]]">Click Here!</a>
</body>
</html>
Email Screenshot from 1st example (working, h1 tag, no link)
Email Screenshot from 2nd example (not working, with link, clicking link does nothing)
You can see that the value is there when being displayed in an h1 tag, but switches to a # when being used in a link. Could someone help me out with this?
... View more