When I person logs into our Confluence site and clicks onto a user profile they see all the Activity that user has completed on the website. I would like to know how I can remove the activity feed from a user profile.
Simple, quick and easy solution that do not require any add-ons is always JS modification.
Add below code to your Custom HTML section (e.g HEAD)
<script type="text/javascript">
AJS.toInit(function(){
AJS.$('#profile-status-list').hide();
});
</script>
Enjoy!
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.