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.
Changing default--new members real names hidden
When I approve new members, the box below is automatically checked BY DEFAULT.
--> Check here to make your real name visible to other members.
I have to uncheck this box for every member I approve.
How do I change the default so that real names are NOT visible, unless the user explicitly chooses this?
0
This discussion has been closed.
Comments
There is a brief mention of Applicants here...
if ($Context->Session->User->Permission('PERMISSION_APPROVE_APPLICANTS') && !$Configuration['ALLOW_IMMEDIATE_ACCESS']) { $UserManager = $Context->ObjectFactory->NewContextObject($Context, 'UserManager'); $ApplicantCount = $UserManager->GetApplicantCount(); $Panel->AddListItem($AdminOptions, $Context->GetDefinition('MembershipApplicants'), GetUrl ($Configuration, 'search.php', '', '', '', '', ' PostBackAction=Search&Type=Users&Keywords=roles:'. $Context->GetDefinition('Applicant').';sort:Date;'), $ApplicantCount.' '. $Context->GetDefinition('New'), '', 100); }
But that's not it.
The line is:
$Configuration['USE_REAL_NAMES'] = '1';
When I add
$Configuration['USE_REAL_NAMES'] = '0';
to the conf/settings.php file, it removes the real names--even for the admin. Admin can no longer see real names. So, this isn't what I'm looking for. :-(