- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2020 09:16 AM
I want to disable the red box below. globally for formats in the same department.
But I want users to still be able to attach documents to TASKS via the backend:
I looked online and read a few things but I am not sure how to do this when I want to disable on the user side only. Thank you.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2020 09:23 AM
Add CSS to the portal:
Per widget Instance, or if you want to remove the Attachment button from the portal completely add to the CSS theme you are using:
I am using the OOTB Style La Jolla, which uses the CSS "sp-theme-la-jolla.css".
I added:
sp-attachment-button,
sp-attachment-button ~ span {
display: none;
}
Result:
Before:
After:
Refer to:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2020 09:23 AM
Add CSS to the portal:
Per widget Instance, or if you want to remove the Attachment button from the portal completely add to the CSS theme you are using:
I am using the OOTB Style La Jolla, which uses the CSS "sp-theme-la-jolla.css".
I added:
sp-attachment-button,
sp-attachment-button ~ span {
display: none;
}
Result:
Before:
After:
Refer to:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2020 09:27 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2020 10:29 AM
How did you get to this page? I do not see where I can view widgets like this. I am on the widget page as well. Will this work if I want to remove this widget from all forms that meet a certain requirement? For example, I want to remove this for if it belongs to the same Configuration item category.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2020 10:41 AM