find
PHP Code:
<if condition="$bbuserinfo[rpgstats] == 1">
and delete all that info from there to
PHP Code:
<!-- END LEFT RPG POSTBIT BAR -->
the option will still be selectable in the usercp so there is some editing there as well but that will stop it from displaying if they have it in the postbit
i just thought a few more mins and you can also take out the if statement
PHP Code:
<if condition="$bbuserinfo[rpgstats] == 0">
...
...
</if>
that surrounts the postbit code so the option box in the rpgcp doesnt work at all
in headquarters.php find and delete the following code
that should remove the option for the rpg info to only be displayed in dhtml/javascript
PHP Code:
if ($bbuserinfo['rpgstats'] == 1)
{
$rpg_postbit1 = '<input type="radio" name="rpgpostbit" value="1" checked="checked" disabled="disabled" /> Display RPG stats in postbit';
$rpg_postbit2 = '<input type="radio" name="rpgpostbit" value="0" disabled="disabled" /> Display RPG stats in dropdown';
}
else
{
$rpg_postbit1 = '<input type="radio" name="rpgpostbit" value="1" disabled="disabled" /> Display RPG stats in postbit';
$rpg_postbit2 = '<input type="radio" name="rpgpostbit" value="0" checked="checked" disabled="disabled" /> Display RPG stats in dropdown';
}
hope this helps