Happy New Year :) though as usually, it has been started not as happy for someone... specially in France.
Jaime:
How do I get only the date of the last thread?
I suppose, you should edit
templates/main_topics_cell.html and remove the blocks of HTML having {$topicAuthor} and {$whenPosted}.
Jaime:
How do I get only the date of the last post?
I want to use this date in the template as eg: Last modified on 2015-xx-xx
You will need an extra code in
index.php for this.
For example, where is this line:
$topicData=db_simpleSelect(0,$Tt,'topic_title, topic_status, topic_poster, topic_poster_name, forum_id, posts_count, sticky, topic_views, topic_time, topic_last_post_id','topic_id','=',$topic);
You need to extend it with:
$topicData=db_simpleSelect(0,$Tt,'topic_title, topic_status, topic_poster, topic_poster_name, forum_id, posts_count, sticky, topic_views, topic_time, topic_last_post_id, topic_last_post_time','topic_id','=',$topic);
Then you may use {$topicData[10]} in the template or
bb_plugins.php.