We don't want the author name to show up in our end user documentation. We don't need customers to know who created what page. Is there a plugin or setting that can hide the "added" and "edited" by user names in Confuence?
If you want to do this globally including spaces with custom stylesheets, go to Confluence Admin | Look & Feel | Custom HTML and paste into At the end of the HEAD:
<style> #com-atlassian-confluence .page-metadata { display:none; } </style>
I've aggressively upped the specificity with #com-atlassian-confluence just in case people are customising heavily.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Great! is there a way to move it to the bottom of the page instead (just above comments?)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Damian, did you find a solution for this? It's what we'd like to do, too.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I added
.page-metadata { display:none; }
to the custom stylesheet of our documentation space (Browse > Space Admin > Stylesheet). We're using Confluence 4.
For more information on styling Confluence with CSS look here: https://confluence.atlassian.com/display/DOC/Styling+Confluence+with+CSS.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Chitra,
we hid the whole line using CSS.
Nevertheless, the information is in the HTML and can be retrieved if looking at the source of the page. To us, that didn't matter.
Cheers,
Kirstin
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I want to hide the author for a space or a specific page. How do I that in Confluence 5.x?
I could not find Kristin's step" Browse > Space Admin > Stylesheet " in our Confluence 5.1
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I found that Space Admins do not have access to the space's "Stylesheet" page. But members of "Confluence- administrators" do.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you check the page layout in confluence admin / layout you will find the line
#parse ("/decorators/includes/page-metadata.vm")
If you want to hide the complete metadata line (created/updated information) you can just delete this line. But if you want to hide only parts of it, you have to look into the page-metadata.vm file and do your changes here.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks much! That worked.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello, I used David's css and it removes the entire line.
I would like to keep the date last edited though. How do I remove only the names?
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You could add
.page-metadata .author { display: none; }
but this would only hide the authors name, not the text "Created by".
I suppose that you need Java script to hide this text, too.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
David's solution worked without going into the .vm file. Thanks everyone.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks everybody for your answers; I am yet to try out the suggestions.
David,
We are not using the default theme at all; we are using the customized Refinedwiki theme--the global HTML is not applicable.
Not sure if changing the .vm file will work either. I will try and let you all know.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Kirstin,
Can you please tell me where you hid the CSS line globally? We cannot hide in each and every page--we have 1000s of pages.
Superuschi,
We are using Refinedwiki theme, so the default layout is not applied there. Any idea where I can find the .VM files? in the \install directory?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
For our installation it's in the confluence main folder (not application data), subfolder "confluence/decorators/includes", so our path is
C:\Program Files\Atlassian\Confluence\confluence\decorators\includes
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.