Alesis, make sure you have a updated version, then open vbTT.php and find
PHP Code:
$reply = 'Replies';
$description = 'Active Threads';
$showthreadnumber = '10';
Replace with the following
PHP Code:
$reply = 'Replies';
$description = 'Active Threads';
$privateforum = '50';
$showthreadnumber = '10';
Edit to your prefrences, then find
PHP Code:
$dosql .= 'SELECT threadid,title,lastpost,replycount,postusername,thread.forumid';
$dosql .= ' FROM thread LEFT JOIN forumpermission USING(forumid) WHERE visible=1';
$dosql .= ' AND forumpermission.forumid IS NULL ORDER BY lastpost DESC LIMIT ' . $showthreadnumber;
Replace with the following
PHP Code:
$dosql .= 'SELECT threadid,title,lastpost,replycount,postusername,thread.forumid';
$dosql .= ' FROM thread LEFT JOIN forumpermission USING(forumid) WHERE visible=1';
$dosql .= ' AND forumid NOT REGEXP ' . $privateforum;
$dosql .= ' AND forumpermission.forumid IS NULL ORDER BY lastpost DESC LIMIT ' . $showthreadnumber;