Hi Team,
In Confluence currently we can see the details like Who has been created the page and last modified date of it but i want to know the Created date for the page as well.
I know we can get this information from Page History but in my scnerio we have around 1K pages so its difficult to go each and every page history and check the created date.
Any suggestions/add-on can help us to find out this.
Hello @Yogesh Mude
I have implemented something simliar.
You can hide the meta-information for all the pages in the space
"How to Hide 'Created by' and 'Last Modified'"
Then add the required information in the space header in the space admin section - look and feel (creator, creationDate, and lastModified by and the date)
https://docs.atlassian.com/atlassian-confluence/5.4.2/com/atlassian/confluence/pages/Page.html
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Tarun Sapra
I have checked with below but no luck..
$content.getCreationDate()
Could you please check and let me know where i have missed out.
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.
Hello @Yogesh Mude
Glad to know that it's working, could you please paste the complete solution so that other users in the community can also implement something similar in their instance if need be. Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
HI @Tarun Sapra
We need to create a user Macro form General configurations and need to add the below code.
## @noparams <ul> <li><strong>Created By:</strong> #usernameLink($content.getCreatorName())</li> <li><strong>Created Date:</strong> $action.dateFormatter.formatDateTime($content.getCreationDate())</li> <li><strong>Page Version:</strong> $content.getVersion()</li> <li><strong>Last Modified By:</strong> #usernameLink($content.getLastModifierName())</li> <li><strong>Last Modifed Date:</strong> $action.dateFormatter.formatDateTime($content.getLastModificationDate())</li> </ul>
Once we have done with the user macro, just need to add the created macro to confluence page so it will show the created Date and all...
For more information please have a look at the below previous discussion.
Note: The CSS code it won't work on anywhere like space Stylesheet.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Yogesh Mude
Thanks for sharing, so you have created the user macro, but then instead of manually adding on every page, have you tried adding the macro on evervy page of the space as described here
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
HI @Tarun Sapra
Yup..this also helps and reducing the time.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Pretty cool - thanks for sharing this solution that made me a find a solution for a problem I had for a long time.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This solution does work for me to populate the date but unfortuantely the date updates to current date in the existing pages even when then page's creation date is not current date. Any solution regarding that?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Yogesh Mude - if you just want to find all pages created in a defined timeline - you can easily put a filter in search. Just put a filter looking for sites and define timeline.
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.
Hi @Yogesh Mude
You can also restrict results using the other available functions like Type of, Last modified aso.
Hope this helps!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sorry for the silly question but I'm not able to find the Advanced Search option in Confluence Itself.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Yogesh Mude - stupid questions don't exist. My fault (a little bit) - it's Full search not Advanced (even if it's advanced in my own little opinion)
You enter full search when using search function - see documentation here
-> you can delete the search word (which you used to enter search result site) if you want to search for the date created
Keep on going!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
In my case, there will be a lot of the pages so the filter will help us more.
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.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.