Have a user who has been deactivated for a while, recently re-activated and using Confluence fine but other users cannot tag them. This is using Confluence Cloud so can not re-index the DB, which seems to be the answer to the problem on the server instance
JQuery would work, but simple CSS also does the trick. Add this in to the "End of HEAD section" in the Custom HTML admin screen:
<style>
ul.tabs-menu li.all { display:none; } </style>
Tested on Confluence 4.2.1.
Thanks so much for your help! So quick and simple :)
Is there a way to change the order also? Maybe move the "Popular" tab to the end?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
In this case, jQuery is very much your friend I think. Again, you'll want to put this code into the end of HEAD section:
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery('ul.tabs-menu > li.all').appendTo('ul.tabs-menu');
});
</script>
This works for me (Conf 4.2).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Charles,
Is there a way that I can limit the appearance of number of updates to 3 or 5 in the Dashboard?
Thanks,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
So I'm using Confluence 5.1 and our issue is the same... We just don't to overload people with the All Updates tab, but the custom HTML above doesn't work for me. Is there a way to disable the All Updates tab in version 5.1?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
A good approach is probably to use jQuery to manage what's accessible or visible in the dashboard. Unfortunately, we hid the dashboard itself from users, so I can't really play with the code and post an example.
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.