Mark WilkinsIt's possible, but you will need to modify few PHP code under addon_1stpagenews2.php. Here are some steps to try (I haven't tested them):
- Locate the code which begins with
if($res=db_simpleSelect(0,$Tt
you will need to add two new fields at the end of the fields listing string:
'topic_id, topic_title, topic_poster_name, topic_time, topic_last_post_id, forum_id, posts_count, topic_time, topic_last_post_time, topic_last_poster'
Then after the line which says
$topics[$tid]['topic_time']
=convert_date($res[7]);
add the following:
$topics[$tid]['topic_last_post_time']=convert_date($res[8]);
$topics[$tid]['topic_last_poster']=$res[9];
Then in your addon_1stpagenews_cell2.htm
l template you can use variables {$topic_last_post_time} and {$topic_last_poster}which mean date/time of the last post, and the nickname of the last poster.