How to hide the version of page for all pages or just for some of them? For example: Version <X.X> last modified by <username> on <date>?
Version 6.1 by Sergiu Dumitriu on 2013/03/21
If you want to hide just the Last modified by... part, then edit templates/shortcuts.vm and comment out (using ##) the following lines:
<div id="document-info">
## <div class="xdocLastModification"> ## Last modification
## $msg.get('core.footer.modification', [$xwiki.getUserName($tdoc.author), $xwiki.formatDate($tdoc.date)])
## </div>
<div>
## <div class="xdocLastModification"> ## Last modification
## $msg.get('core.footer.modification', [$xwiki.getUserName($tdoc.author), $xwiki.formatDate($tdoc.date)])
## </div>
<div>
If you want to hide both the version information and the shortcuts to comments, attachment and the others, then edit templates/layoutExtraVars.vm and add the following line at the end of the file (make sure it's outside the comment block delimited by #* and *#):
#set ($displayShortcuts = false)
However, it is not recommended to modify the templates on the filesystem, since this makes upgrades harder. The recommended way of overriding a template is to create and activate a custom skin and attach the modified files to it.