remove time stamp
at 2016-06-19 14:52:00.
if you want to remove sumbited by admin on (some time) you can edit the file modules/node/node.module , fide the fallowing line:
and replace it with:
$variables['submitted'] = //t('Submitted by !username on !datetime', array('!username' => $variables['name'], '!datetime' => $variables['date']));
and replace it with:
$variables['submitted'] = '';//t('Submitted by !username on !datetime', array('!username' => $variables['name'], '!datetime' => $variables['date']));remember that you can't just comment out the $variables['submitted'] because it may couse issues within your site later on