Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Any way for Master Administrator to see "Real Names"
Andy K
✭
It's becoming clear that the community I've created needs the option to see others' Real Name info. It's just the way we roll.
1) So, I want to set up the forums so that the Master Administrator role can bypass the "Show your Real Name?" box if unchecked, and effectively always see Real Name on the accounts page no matter what.
2) Also, I was looking into the possibility of removing that checkbox altogether, and making it so that Real Name is always displayed on the account page, and no option to turn it off.
Anyone know a quick way in the code to jury-rig either?
Thanks!
-Andy
1) So, I want to set up the forums so that the Master Administrator role can bypass the "Show your Real Name?" box if unchecked, and effectively always see Real Name on the accounts page no matter what.
2) Also, I was looking into the possibility of removing that checkbox altogether, and making it so that Real Name is always displayed on the account page, and no option to turn it off.
Anyone know a quick way in the code to jury-rig either?
Thanks!
-Andy
0
This discussion has been closed.
Comments
Comment out this line:
<span>'.GetDynamicCheckBox('ShowName', 1, $this->User->ShowName, '', $this->Context->GetDefinition('MakeRealNameVisible')).'</span>
from /themes/account_identity_form.phpand then to turn the option on for all current users, run in your DB administration:
UPDATE LUM_User SET ShowName = 1 WHERE ShowName = 0
-Andy