Hiding buttons
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
41m ago
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
16m ago
Hi @julianada-s - I'm not sure there's a way to do this without a doing something like this in a client script (which is not recommended):
function onLoad() {
var actionName = 'reject';
var targetId = '#' + actionName + '_bottom';
if (typeof jQuery !== 'undefined') {
var el = jQuery(targetId);
if (el.length > 0) {
el.hide();
}
}
}
