I have C done for you. Didn't take too long, but I can't guarantee that it's perfect.
In index.php find:
PHP Code:
} else {
$pminfo='';
}
Insert after:
PHP Code:
// get last post
$totalposts=$bbuserinfo[posts];
if ($bbuserinfo[posts]!=0 and $bbuserinfo[lastpost]!=0) {
$lastpostdate=vbdate($dateformat,$userinfo[lastpost]);
$lastposttime=vbdate($timeformat,$userinfo[lastpost]);
$getlastposts=$DB_site->query("SELECT thread.title,thread.threadid,thread.forumid,postid,post.dateline FROM post,thread WHERE thread.threadid=post.threadid AND thread.visible = 1 AND post.userid='$bbuserinfo[userid]' ORDER BY post.dateline DESC LIMIT 20");
while ($getlastpost=$DB_site->fetch_array($getlastposts)) {
$lastposttitle=$getlastpost[title];
$lastposturl="showthread.php?s=$session[sessionhash]&postid=$getlastpost[postid]#post$getlastpost[postid]";
$lastpostdate=vbdate($dateformat,$getlastpost[dateline]);
$lastposttime=vbdate($timeformat,$getlastpost[dateline]);
break;
}
} else {
$lastpostdate="Never";
}
Then, in your forumhome weclometext template, add
Code:
Your last Post was: <a href="$lastposturl">$lastposttitle</a><br>