how can I insert a hyperlink into the field help b...
# administration
m
how can I insert a hyperlink into the field help box? it keeps formatting as normal text, not a link
t
@Matt L, first check out this article.
https://suiteanswers.custhelp.com/app/answers/detail/a_id/77032/loc/en_US
It mentions that help text has some native HTML support, but it has specific guidance on what is possible. In your case, it looks like the <html> tag itself is not supported, which could be confusing the algorithm. Secondly, it looks like your <a> tag is misconstrued. The
href=
attribute needs to go into the tag itself, rather than in the content between the tags. Here is an article with examples! https://www.w3schools.com/tags/tag_a.asp
m
@Tony Zuko thanks for the examples! I don't understand why this would not work though? wouldn't this be the correct way to insert hyperlink? <html><a href="<https:example.com>" target="_blank">Click to Download</a></html>
j
i had this fixed with support under Defect 611569
t
Glad there’s a defect in place for this! I didn’t realize that. @Matt L just regarding the HTML, you had a stray
>
character in
<a> href…>…</a>
in your screenshot, which you fixed in the follow-up message. I didn’t see the two in the screenshot initially so I thought it was just
<a> href … </a>
when I made my first reply.
But I guess now we know fixing that would not have helped 😝