I’m using XWiki to create my website and I’ve encountered an issue. I need to disable the display of the publication date and time on the page. I can’t find the corresponding option in the settings. Perhaps someone has faced a similar issue and can suggest how to do it?
I would appreciate any advice or pointers on where to find information on this issue.
One simple possibility: Add a style sheet extension and disable the displaying of the stuff via CSS.
Its a dirty hack, the browser still receives the Information in HTML, but with CSS its told to not display it. So if your goal is to simply have a cleaner look its probably a good enough solution.
/* hide last changed by */
.xdocLastModification {display: none;}
also additionally possible:
/* hide created by */
.xdocCreation {display: none;}