Add a link in work notes for user to be able to click on
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2024 10:47 AM
Hi everyone
I have a requirement for technicians to be able to add hyperlinks for users to click instead of pasting a full url. Below is what I've tried so far with luck. (trying to keep it as simple as possible) Has anyone achieved this without much customization.
[code]<a href = “https://www.google.com"> Click Me! </a>[code]

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2024 12:16 PM
Hi @Gemma4 - You should use target attribute while using href tag, this way your url will not try to open inside platform, You can use it to open on top or your page or new page.
You can try something like below line.
[code]<a href = "https://www.google.com" target="_top"> Click Me! </a>[/code]
OR
[code]<a href = "https://www.google.com" target="_blank"> Click Me! </a>[/code]
Hope it will help you.
Thanks,
Harsh

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2024 12:29 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2024 11:10 AM
@Gemma4 Problem is with double quotes, you have typo there, please use correct quotes.
[code]<a href = "https://www.google.com"> Click Me! </a>[/code]