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!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.