This question is in reference to Atlassian Documentation: How to hide content author name (created by) in a page
The following code added to the Stylesheet removes the author's name, but leaves the text snippet "Created by ," which looks odd.
Q. How do you remove that snippet as well?
#com-atlassian-confluence .page-metadata .author {
display:none;
}
Is there already a solution on how to remove the text? I'm currently facing the same issue. Last modification should still be displayed.
Hi,
I can't find Stylesheet under "Settings > Look and Feel". Where can I add my custom CSS?
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This seems to be possible only for the Confluence admins, not the Space Admin.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Frances,
Just remove the .author to remove all the page metadata.
#com-atlassian-confluence .page-metadata {
display:none;
}
Let me know if I misunderstood the question.
Maggie
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Maggie,
I have the same problem, I think the issue is that if you add the code to the StyleSheet, your page still displays the phrase 'Created by'.
In other words, you end up with something like:
"Created by , last modified on Feb 05, 2018"
The code insert removes the name, not the Created by phrase.
Ideally, what's left would be "Created on DATE" or "Modified on DATE".
Any thoughts on that?
Thanks,
Kris
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
Below code would remove entire line.
.page-metadata .page-metadata-modification-info {
display:none;
}
Thanks,
Harsh H
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.