I thought this might be easy, and it was.
In showthread.php go to line 488. You'll see something like:
Code:
} else {
$post[signature] = "";
}
} else {
change it to:
Code:
} else {
$post[signature] = "";
}
$forumcount_result = $DB_site->query("select count(*) as forumposts from post,thread where post.threadid=thread.threadid and post.userid=" . $post[userid] . " and thread.forumid=" . $curforumid);
$forumcount_row=$DB_site->fetch_array($forumcount_result);
$post[forumposts] = $forumcount_row[forumposts];
$DB_site->free_result($forumcount_result);
} else {
Go down about 6 lines where you see:
Code:
$post[posts]="N/A";
and add a line so you have:
Code:
$post[posts]="N/A";
$post[forumposts]="N/A";
Finally, go to the Postbit Template named "postbit".
Near the bottom of the initial window you'll see:
Code:
Posts: $post[posts]</smallfont></td>
Change it to:
Code:
Posts: $post[posts]<br>
Forum Posts: $post[forumposts]</smallfont></td>
Be sure each line of code is on a single line, so if you copy/paste watch that it doesn't embed some newlines in there.
Let me know how it goes for you please.
-Jonathan