- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2024 09:52 AM
Is there a way to hide the paperclip icon on the Service Portal in the Activity tab when posting comments? We already have the 'Hide Attachments' option checked on the record producer.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2024 10:53 AM
Hi @NBeheydt You can write CSS on ticket page to hide attachment icon from "Activity" tab.
You can use below CSS.
.va54beb3a87f10010e0ef0cf888cb0bba .panel-title-icons ul {
display: none;
}
Steps:
- CTRL + Right click on ticket page then you will see option "Instance In Page Editor" .
- Click on "Instance In Page Editor", it will open a page there you will see "CSS" field, add css which i have added here.
- Save the page and reload the ticket page. You will not see attachment icon.
Attached screenshot for your reference. I have tested and its working on my PDI
Result:
Hope it will help you.
Thanks,
Harsh

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2024 10:53 AM
Hi @NBeheydt You can write CSS on ticket page to hide attachment icon from "Activity" tab.
You can use below CSS.
.va54beb3a87f10010e0ef0cf888cb0bba .panel-title-icons ul {
display: none;
}
Steps:
- CTRL + Right click on ticket page then you will see option "Instance In Page Editor" .
- Click on "Instance In Page Editor", it will open a page there you will see "CSS" field, add css which i have added here.
- Save the page and reload the ticket page. You will not see attachment icon.
Attached screenshot for your reference. I have tested and its working on my PDI
Result:
Hope it will help you.
Thanks,
Harsh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2024 12:02 PM
Thanks, that worked.