When I allocate a restricted space to a group, while the content is restricted in the Dashboard, the global profile updates still scroll ... how do I eliminate these from showing up!
Community moderators have prevented the ability to post new answers.
If a quick bit of JavaScript is OK, you can easily remove that...
Browse to...
Confluence Administration | Look and Feel Custom HTML
In At end of the HEAD, add:
<script>
AJS.toInit(function(){
AJS.$('.dashboard li.grouping .icon-user').parents('.grouping').remove();
});
</script>
Of course this quick n' dirty approach is no replacement for a custom plugin :)
So happy - Perfect! This has been bugging me for ages! Happy Dance!
Applied and works!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.