If it helps, this is the part of the instruction file that I am having probs with (been trhough it twice now and no change)
PHP Code:
<--------------------------------------------------------------------------------------------------------->
Find:
<--------------------------------------------------------------------------------------------------------->
if ($ctEnable == 1 and $customtext) {// Custom Titles are ON, Make sure user can actually use them and isn't trying to manipulate them through forms
$ctShowTitle = 0;
if (ismoderator() and $ctAdmin == 1) {// Allow mods to use titles no matter what
$ctShowTitle = 1;
} else {
if ($ctEitherOr==0) {// Allow titles if Posts are ok OR JoinDate is ok
if ( ($bbuserinfo[posts] >= $ctPosts) or ( ($bbuserinfo[joindate] <= (time()-($ctDays*86400))) or ($ctDays==0)) ) {
$ctShowTitle = 1;
}
<--------------------------------------------------------------------------------------------------------->
Replace it with:
<--------------------------------------------------------------------------------------------------------->
if ($ctEnable == 1 and $customtext) {// Custom Titles are ON, Make sure user can actually use them and isn't trying to manipulate them through forms
$ctShowTitle = 0;
if ($qpct == 1 and $ctEnable == 1 and ($bbuserinfo[qualitypoints] >= $minqpct) ) {
$ctShowTitle = 1;
} elseif (ismoderator() and $ctAdmin == 1) {// Allow mods to use titles no matter what
$ctShowTitle = 1;
} else {
if ($ctEitherOr==0) {// Allow titles if Posts are ok OR JoinDate is ok
if ( ($bbuserinfo[posts] >= $ctPosts) or ( ($bbuserinfo[joindate] <= (time()-($ctDays*86400))) or ($ctDays==0)) ) {
$ctShowTitle = 1;
}