Show last modified and author info to site visitors
Hello. I want site visitors to be able to see who wrote an page or article and when it was last modified. I have editor rights to the site, but can't see a way to add this. Does an admin have to put something into the page template? If so, what (so i know what to request)?
Also is there a way to have the author emailed just prior to the scheduled unpublish or remove date.
To answer your first point - yes, to add the info you require you'll need a developer who can edit the underlying Umbraco templates. They'll need to take two properties from the current page data and add them to the template. These would be:
Model.Content.UpdateDate and Model.Content.WriterName
Any competent Umbraco developer should know how to do this. If you want more details than the username of the author, this will be a little more tricky, as it will require code to query this.
Show last modified and author info to site visitors
Hello. I want site visitors to be able to see who wrote an page or article and when it was last modified. I have editor rights to the site, but can't see a way to add this. Does an admin have to put something into the page template? If so, what (so i know what to request)?
Also is there a way to have the author emailed just prior to the scheduled unpublish or remove date.
Thank you.
To answer your first point - yes, to add the info you require you'll need a developer who can edit the underlying Umbraco templates. They'll need to take two properties from the current page data and add them to the template. These would be:
Model.Content.UpdateDate
andModel.Content.WriterName
Any competent Umbraco developer should know how to do this. If you want more details than the username of the author, this will be a little more tricky, as it will require code to query this.
is working on a reply...