2009-02-26 10:50:34
Line bottom content with Last Modified
Hi Greg,
Please, how can delete the info "Last Modified..." in each page of content.
2009-02-26 10:50:34
Hi Greg,
Please, how can delete the info "Last Modified..." in each page of content.
2009-02-26 13:59:00
Near the bottom of the content.php file, comment out the line:
[php]
$savant->assign('content_info', _AT('page_info', AT_date(_AT('inbox_date_format'), $content_row['last_modified'], AT_DATE_MYSQL_DATETIME), $content_row['revision'], AT_date(_AT('inbox_date_format'), $content_row['release_date'], AT_DATE_MYSQL_DATETIME)));
[/php]
2009-02-27 02:51:46
you could also to this in themes/default/content.tmpl.php file by commenting out:
[php] echo $this->content_info;[/php]
(at the bottom)
2009-02-27 06:20:38
Thank you! ;)