By gordonbooker on
I am trying to do this in a zen sub theme with Drupal 5.7 - so that under the title, all I see is the date it was posted - not the user name.
This subject came up before in http://drupal.org/node/91457 - but the solution does not work in my theme.
Comments
Resolved
The answer was to change < ?php print $submitted; ?> to
print (format_date($node->created))in node.tpl.php line 17I had a lot of trouble with this because (I think) I was trying to change it on a teaser that was "sticky" - nothing would work - when I did it on a fresh story, it was OK.