open member.php
find:
PHP Code:
if ($ctEnable == 1) { // Custom Titles are ON
$ctShowTitle = 0;
if (ismoderator() and $ctAdmin == 1) { // Allow mods to use titles no matter what
$ctShowTitle = 1;
} else {
and replace it with:
PHP Code:
if ($ctEnable == 1 and ($bbuserinfo[usergroupid]==6 or $bbuserinfo[usergroupid]==5 or $bbuserinfo[usergroupid]==7) ) { // Custom Titles are ON
$ctShowTitle = 0;
if (ismoderator() and $ctAdmin == 1) { // Allow mods to use titles no matter what
$ctShowTitle = 1;
} else {
should be all