Hmm. Then you could do the following:
1) Create a new custom profile file (select) with all the titles you want to have, set it to required, profile
2) In profile.php FIND
PHP Code:
else
{
$customtitle = $bbuserinfo['customtitle'];
$customtext = $bbuserinfo['usertitle'];
}
}
else
{
$customtitle = $bbuserinfo['customtitle'];
$customtext = $bbuserinfo['usertitle'];
}
REPLACE that with
PHP Code:
else
{
$customtitle = $bbuserinfo['customtitle'];
$customtext = $bbuserinfo['usertitle'];
}
}
else
{
$customtitle = 2;
preg_match("/fieldx = '(.*)'/", $userfields, $matches);
$customtext = $matches[1];
}
Where fieldx is the name of your new profile field. Then the users can select the title in User CP.