- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2018 04:46 AM
Hi,
I need to hide "Reply All" and "forward" option from Activity log. I already looked for "email_reply" OOB UI Macro, and commented the code lines for " Reply all" and "forward" option, but it's still not working. Can anyone help please:
Looking forward to your responses.
Regards
Sukirti
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2018 10:07 AM
Hi Sukirtighosh,
Could you please try the below code in onLoad client script to hide the 'Reply All' and 'Forward' buttons:
function onLoad() {
$j('button[reply-type="replyAll"]').toggle();
$j('button[reply-type="forward"]').toggle();
}
since I don't see any id for these 2 buttons when I do inspect element in UI 16 as shown in below screenshot. so I tried to hide these buttons by 'reply-type' attribute value:
you will be able to see only reply button once the page is loaded as shown in below screenshot:
Please mark it correct/helpful, if it resolves your problem.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2018 11:47 PM
Thank you Mahi, it solved my issue. 🙂
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-27-2022 08:19 PM
Hi @Mahendra RC , @sukirtighosh
we have the similar requirement.
Can we do it without DOM manipulation? Do we have any other way of doing this?
Our requirement is to hide these buttons on all other tables except the customer service case table.
Thanks in advance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2024 10:34 PM
Hi I have the same requirement .But I want to restricted the reply,reply all ,forward buttons just on the incident table ...