Hello,
I'm just wondering if the "date" column from Blog Posts can be somehow hidden due to wrong creation date ( https://jira.atlassian.com/browse/CONFSERVER-59388 )
Thank you !
Best regards,
Alin
@DEJU ALIN MADALIN if you are on server you could identify the HTML element and use CSS to hide it. It would be across the board though and hide every single date on all blog posts.
Hello @Brant Schroeder ,
This will impact all the Blog Posts from entire Confluence Server? Or can be set only for one Space.
Thank you !
Best regards, Alin
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You could use JavaScript to identify the space and apply the style. This way it would only impact a single space.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can you please provide me an example of the code that can be used?
Thank you !
Best regards,
Alin
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You would need to do something like this.
SPACEKEY - needs to be changed to the space key
<script>
AJS.toInit(function() {
if (window.location.href.indexOf("display/SPACEKEY/") != -1) {
AJS.$('.last-modified').hide();
}
});
</script>
The class last-modified will hide all dates in the space since a blog page is the same as any other page in the space.
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.
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.