Can you tell me how can i disable the network macro. I have to hide the network information of all users in confluence because of the privacy? thanks Selcuk
Hi calio73,
As Administrator you must go to Manage Apps section, and disable the network module under Profile Macros app under System types:
Regards
What about to add the following code into the Global CSS (see Styling Confluence with CSS) or Announcement Banner for Confluence?
<style>.network-macro {display: none !important;}</style>
Regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi could you please try to add it to the Global CSSas per documentation says:
To edit your global CSS stylesheet:
Note that you must get rid of <style> tag using this way.
Regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi now i have contacted Atlassian support and they gave me a code for custom html and it works great. Network is now disappeared. Here is the code in case anyone else has the same problem.
<script> AJS.toInit(function() { AJS.$( ".pagebody.user-profile a:contains('Network')" ).parent('li').hide(); AJS.$( "#user-menu-link-user-content a:contains('Network')" ).parent('li').hide(); AJS.$( ".pagebody.user-profile a:contains('Netzwerk')" ).parent('li').hide(); AJS.$( "#user-menu-link-user-content a:contains('Netzwerk')" ).parent('li').hide(); }); </script>
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.