- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2022 01:47 AM
Hello every one.
Its possible to make a catalog item or a knowledeg article as a redirect to url ?
I want to make a tile "Knowledeg article" as a redirect to external link without using "Quick Links" on the right side.
I need:
1. Tile with record producer, 2. Tile with a redirect link. 3. Another tile with a redirect link
Please, assist.
Thank you
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2022 10:35 AM
Tested with below, works immediately.
Kind regards,
Mark
Kind regards,
Mark Roethof
Independent ServiceNow Consultant
10x ServiceNow MVP
---
~444 Articles, Blogs, Videos, Podcasts, Share projects - Experiences from the field
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2022 06:39 AM
Hi Miko_aj,
You can do that via a custom variable. What makes everything happen is that for the default value, you need to identify a widget. Creating a widget is really simple. Go to Service Portal | Widgets. You may find an existing widget that does most of what you need. You can copy that or just create a new one. The Body template will look like this
<div>
<a href="your url" target="_blank">Click here to ...</a>
</div>
target="_blank" makes the link open in a new tab. There is no server script and you Client controller looks like this
api.controller=function() {
/* widget controller */
var c = this;
};
That's about all there si to it.
:{)
Helpful and Correct tags are appreciated and help others to find information faster

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2022 10:34 AM
Hi there,
Have you tried creating a Content Item for this? Should work fine (also just double checked). Just select as Content type "External Content".
When adding Connected Content to the Topic, just select Catalog Item, and you can enter your Content Item.
Kind regards,
Mark
Kind regards,
Mark Roethof
Independent ServiceNow Consultant
10x ServiceNow MVP
---
~444 Articles, Blogs, Videos, Podcasts, Share projects - Experiences from the field

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2022 10:35 AM
Tested with below, works immediately.
Kind regards,
Mark
Kind regards,
Mark Roethof
Independent ServiceNow Consultant
10x ServiceNow MVP
---
~444 Articles, Blogs, Videos, Podcasts, Share projects - Experiences from the field
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2022 02:07 AM