- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2021 09:01 AM
Hello, I'm using a catalog item on my portal which has several reference type fields like location, config item etc.
There is a button next to Reference type Field in our Service Portal form. The 'i' button displays a full view of the object of reference. The end user should not have access to this functionality. Pls help to remove it.
I tried writing this CSS to fix the issue but it doesn't work for me
.field-has-reference > .add-on {
display:none;
}
Solved! Go to Solution.
- Labels:
-
Service Portal Development
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2021 09:42 AM
Hi,
If you want to remove this feature for all catalogs, just add a css in sc_cat_item and sc_cat_item_guide page as below
.field-has-reference button {
display: none;
}
Thanks and Regards,
Saurabh Gupta
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2021 11:58 AM
Try adding the below CSS in the Page Specific CSS of the page where the widget is placed:
button.lookup {
display: none;
}
Hope this helps!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2021 10:45 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2021 09:42 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2021 11:09 PM
Hi Saurabh, this is helpful, thanks
What if i'm using 3 different catalog items & want to remove the info button from a single catalog?
And how can i remove the info button from a single field?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2021 11:15 PM
Hi,
For that you can write client script and manipulate the DOM, but that is not a recommended way.
If my answer replied your question please mark appropriate response as correct so that the question will appear as resolved for other users who may have a similar question in the future.
Regards,
Saurabh
Thanks and Regards,
Saurabh Gupta