MyBB Community Forums

Full Version: Shoutbox Hide IPs from moderators
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello everyone,
I am trying to hide IPs on shoutbox from moderatorsĀ 

I go atĀ dvz_shoutbox_archive

and I used the following code to hide IPs from moderators (ID:6)
<if in_array($mybb->user['displaygroup'], array('6')) then>
<style>.ip { visibility: hidden; }</style>
{$archive}
<else>{$archive}</if>

but if they right click>>Inspect>>and delete the following code from the template they will be able to see IPs

<style>.ip { visibility: hidden; }</style>


Any other way to hide IPs?