We are a quite large group, and to avoid overloading our users I only want them to see in their Dashboard the information related to their favorite spaces and their network.
I already found out how to disable "Popular". But haven't found anything about the "All Updates" tab.
Thanks for your help!
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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.