Hello,
I am working on a script using xmlrpc to update a confluence page once a day from tests that run over night. There are several pages that need to be updates, however, I do not want the updates to appear on the main dashboard's "Popular" stream, or even on the "All Updates" stream.
I have tried writing the pages using xmlrpc with the minor_edit set to True, but they still appear in both streams.
I have a specific user account that does not do anything else, so is there a way to just completely hide all updates from this user from the main dashboard?
Thanks!
Hi John
In Confluence Admin | Look & Feel | Custom HTML | At the END of the HEAD, paste:
var hiddenUser = 'david'; // Change this as required AJS.toInit(function ($) { var hideUpdates = function () { AJS.$('#recent-updates a[data-username="' + hiddenUser + '"]').parents('.grouping,.stream-item').hide(); }; hideUpdates(); // for the initial page load $('#recent-updates').ajaxComplete(hideUpdates); // for tab clicks });
This will hide all updates from the user david and will also hide any updates when you click on different tabs in the activity stream.
@John Shaw: If it works, mark it as correct ;)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi David,
A similar script for the new (Modern) Dashboard?
BR,
Normann
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi John,
I believe there's no way to do that for some specific user, however you can do for all users by disabling some plugins as we can see in this answer.
go to the Dashboard Macros plugin, click Manage plugin modules and disable the Popular Tab module.
Cheers,
Rodrigo
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.