Well what I did was htacces password protect my mod folder. I didn't need my super mods to gain access to that area.
Second, I ensured that I turned off all options in my admin area for viewing IPs, except admin of course.
Third I made a few style changes.
This is the change I made to my footer. Sorry, I don't know what it was before, but as you can see, it now only allows admin to see both the admin & mod control panel link.. so super mods can no longer see it to try and go to that area.
Code:
<if condition="$show['admincplink']"><a href="$admincpdir/index.php?$session[sessionurl]">$vbphrase[admin]</a> - <a href="$modcpdir/index.php?$session[sessionurl]">$vbphrase[mod]</a> - </if>
I changed template WHOSONLINE from this
Code:
<if condition="$show['ip']"><td class="thead">$vbphrase[ip_address]</td></if>
to the following to ensure it WAS just admin that would see the ips.
Code:
<if condition="$show['admincplink']"><if condition="$show['ip']"><td class="thead">$vbphrase[ip_address]</td></if></if>
And finally I changed the "postbit_ip" template, adding the admincplink if statement. This is how mine looks now.
Code:
<if condition="$show['admincplink']">
<if condition="($post[proxyip] != '')">
<a href="postings.php?$session[sessionurl]do=getip&p=$post[postid]"><img class="inlineimg" src="$stylevar[imgdir_button]/ipp.gif" alt="$vbphrase[ip]" title="$post[ip]" border="0" /></a>
<else />
<a href="postings.php?$session[sessionurl]do=getip&p=$post[postid]"><img class="inlineimg" src="$stylevar[imgdir_button]/ip.gif" alt="$vbphrase[ip]" title="$post[ip]" border="0" /></a>
</else></if>
</if>
I think that was it. Sorry I couldn't remember more of what I did. If anyone knows where else the IP shows, do let me know though. Hope I was of some help.