open index.php
find:
// get total posts
under it add:
PHP Code:
// +++++++ Last Post Thread ID [ Start ] +++++++
$getid=$DB_site->query('SELECT threadid FROM thread ORDER BY lastpost DESC LIMIT 1');
$id=$getid[threadid];
$lastthread="<a href=\"showthread.php?s=$session[sessionhas]&threadid=$id">$id</a>";
// +++++++ Last Post Thread ID [ End ] +++++++
then in the forumhome template place [php]$lastthread[/php where you want it to appear... it'll display the number like you were looking for...
i think this'll work but not positive and not sure if this is what you were looking for?
g-force2k2