I'm assuming you just want this to be displayed for a user that has registered, and it doesn't matter if they have activated their account or whatnot, just simply that they have registered... If so, just open your myvbindex.php and look for this line:
PHP Code:
if ($showcustom1) {
Replace that with:
PHP Code:
if ($showcustom1 AND $bbuserinfo[userid]!='0') {
If you don't want it to be displayed to users if they haven't yet activated their account, instead replace that with:
PHP Code:
if ($showcustom1 AND $bbuserinfo[usergroupid]!='3' AND $bbuserinfo[userid]!='0') {