Quote:
Originally posted by Xenon
you have to edit members.php
first of all you have to enable custom avatar upload..
then open member.php find this:
PHP Code:
if (($avatarallowupload or $avatarallowwebsite) and $bbuserinfo[posts] >= $avatarcustomposts) {
and change it to:
PHP Code:
if (($avatarallowupload or $avatarallowwebsite) and $bbuserinfo[posts] >= $avatarcustomposts and ($bbuserinfo['usergroupid'] == 6 or $bbuserinfo['usergroupid'] == 5 or $bbuserinfo['usergroupid'] == 7)) {
then find:
PHP Code:
if ($ctEnable == 1 and ($bbuserinfo['usergroupid'] == 6 or $bbuserinfo['usergroupid'] == 5 or $bbuserinfo['usergroupid'] == 7)) { // Custom Titles are ON
again you have to enable customtitles in your acp first...
then find:
PHP Code:
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
and replace with:
PHP Code:
if ($ctEnable == 1 and $customtext and ($bbuserinfo['usergroupid'] == 6 or $bbuserinfo['usergroupid'] == 5 or $bbuserinfo['usergroupid'] == 7)) {// Custom Titles are ON, Make sure user can actually use them and isn't trying to manipulate them through forms
and change it to:
PHP Code:
if ($ctEnable == 1) { // Custom Titles are ON
|
your post is very confusing, you say this
then find:
PHP Code:
if ($ctEnable == 1 and ($bbuserinfo['usergroupid'] == 6 or $bbuserinfo['usergroupid'] == 5 or $bbuserinfo['usergroupid'] == 7)) { // Custom Titles are ON
but you don't say what you want me to do with it and then you say this later on
and change it to:
PHP Code:
if ($ctEnable == 1) { // Custom Titles are ON
but you dont say what you want me to find to change it too. Im sorry for being an idiot.