Well...
You could install Logician's " Advanced Templates: Dynamic Templates Changing according to different conditions" hack...
Then open the forumhome template, and find :
Then replace it with:
Code:
[[($bbuserinfo[usergroupid]<0)]] $loggedinusers [[/($bbuserinfo[usergroupid]<0)]]
Then open online.php
Find:
PHP Code:
require('./global.php');
Add below:
PHP Code:
if ($bbuserinfo['usergroupid']<0) {
show_nopermission();
}
Satan