
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā12-12-2019 09:48 AM
Hi all,
I'm trying to find the best solution to remove the preview icon from one of my reference variable (Requested for) from all the items on the Service Catalog. Can someone assist suggesting the 'best practice' solution?
Thank you,
Preet Patel
The icon looks like this .
Solved! Go to Solution.
- Labels:
-
Service Catalog

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā05-26-2020 02:46 PM
Did you ever solve this?
If you're on a portal page, you can add page specific css to hide it.
That element has a class of 'add-on' so in the Portal Page's Page Specific CSS you can add:
.add-on{
display: none;
}

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā07-22-2020 02:10 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā07-22-2020 02:19 PM
Awesome! So glad it helped!!
I hope the rest of your day goes well.
Rick
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā04-06-2021 08:22 AM
isn't this solution an all or nothing for the service catalog item page effecting all catalog items and reference fields? In some cases you may want to display this info for some fields and then in other situations you may not want to...

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā04-06-2021 08:41 AM
Hi
I think, if you need it shown on some catalog items ... you may need a different portal page and direct users to that one?
Another option is possibly to look at the DOM of the catalog item where you don't want the preview icon to appear and possibly DOM-walk using css parent-child relationships to be specific in which preview icon to hide. I mean that if the parent <div id='particular-id'...> element has a particular id you might be able to do something like this:
#particular-id > .add-on {
display: none;
}
Does that make sense?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā04-06-2021 11:44 AM