Remove the "Last modified by" line

Hi,
Is there a way to remove the “Last modified by” line on the blank template?
Thanks

Hello,

2 ways:

  • You can use a SSX to hide it
    ie: with this CSS
.xdocLastModification {
display: none;
}

About SSX: http://www.xwiki.org/xwiki/bin/view/Documentation/DevGuide/Tutorials/SkinExtensionsTutorial/#HMinimalStyleSheeteXtension

  • or “worst”, modify the template:
webapps/xwiki/skins/flamingo/contentheader.vm:      <div class="xdocLastModification">

Pascal BASTIEN

Thank you, I’ll try

On http://ww.xwiki.org/xwiki/bin/view/FAQ/HowToHidePageVersion it sounds as if the last modified information can be hidden by #set ($displayShortcuts = false), but it still remains.
Is there a way with #set($ = false) to hide it?