Hmm... just a thought here.
______
i only started to work on VB3 yesterday but ill give it a shot.
add this query to your forum DB
You must first be a
registered member to view any code.
go to
functions_newpost.php find
You must first be a
registered member to view any code.
REPLACE
$bbuserinfo['posts'] += 1; with
$thrd = $DB_site->query_first("SELECT * FROM thread WHERE threadid='$threadid'");
if ($thrd['countposts'] !=0) { // Count posts incase the V is off
$bbuserinfo['posts'] += 1;
}
Scroll down a bit, and you'll see
$doposts = 'posts = posts + 1,';
replace it with
if ($thrd['countposts'] !=0) { // Count posts incase the V is off
$doposts = 'posts = posts + 1,';
}
__________
Now you have to add something like "Show Signature" in the thread to make it "UnPosts Count" or something like that.
As i said, im new at this, but this code will work (i hope)
