Wireless Army
This is a blog / tips and tricks website for web developers and security researchers.
follow us in feedly


remove time stamp
by admin
 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:
 $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