Jeffj - Thanks for the compliment and for helping PKRWUD.
cyklonen - Yes, there is a way to change the default city for the weather hack. If you'll look in the readme file, it's explained right under the section that explains the Admin CP options.
As for making one of the custom boxes visible only to admins:
Open your myvbindex.php file and look for:
PHP Code:
if ($showcustom2) {
$getbgrow=getrowcolor();
eval("\$custom2 .= \"".gettemplate('index_custom2')."\";");
}
Change that to:
PHP Code:
if ($bbuserinfo['usergroupid']==6) {
$getbgrow=getrowcolor();
eval("\$custom2 .= \"".gettemplate('index_custom2')."\";");
}