The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
How to hide Private Message info on Who's Online page?
How does one hide who a member is private messaging on the "Who's Online" page?
I know that others find this information rather invasive, as well, but I don't see a solution on here for it. I know that I can set all user details to not showing up, but I'd rather not remove everything for security reasons... to help staff moderate the forums properly. Should I modify the functions_online php page in some manner or edit the phrase on the Who's Online template? How has anyone else handled this previously? Having the message show up as simply "private messaging" would suffice, really. It seems like it wouldn't be too difficult to just remove that user that is being pmed rather easily, I'll look into that first to see if I can come up with a solution. |
#2
|
||||
|
||||
Firstly, I want to say that I don't know how to edit it, but, yes, in functions_online.php you can check this part of code:
Code:
case 'pm': $userinfo['action'] = $vbphrase['private_messaging']; if ($vbulletin->userinfo['permissions']['wolpermissions'] & $vbulletin->bf_ugp_wolpermissions['canwhosonlinefull']) { if ($seeuserid) { $userinfo['where'] = '<a href="member.php?' . $vbulletin->session->vars['sessionurl'] . "u=$seeuserid\">$wol_user[$seeuserid]</a>"; } if ($userinfo['values']['do'] == 'newpm' OR $userinfo['values']['do'] == 'insertpm' OR $userinfo['values']['do'] == 'newmessage') { $userinfo['action'] = $vbphrase['creating_private_message']; } else if ($userinfo['values']['do'] == 'editfolders' OR $userinfo['action']['do'] == 'updatefolders') { $userinfo['action'] = $vbphrase['modifying_private_message_folders']; } else if ($userinfo['values']['do'] == 'trackpm' OR $userinfo['values']['do'] == 'deletepmreceipt') { $userinfo['action'] = $vbphrase['tracking_private_messages']; } else if ($userinfo['values']['do'] == 'showpm') { $userinfo['action'] = $vbphrase['viewing_private_message']; } else if ($userinfo['values']['do'] == 'downloadpm') { $userinfo['action'] = $vbphrase['downloading_private_messages']; } } break; |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|