Log in

View Full Version : Moderators Functions - View IP in post - Admin/Mods


AURFSCAN
05-11-2014, 10:00 PM
View the IP addresses of Members in their posts. The IP address displayed in the post is only viewable by the usergroup you set and you can add the users you dont want to display their IP's.

The displayed IP is clickable and linked to the Info page from ipaddress.is


In postbit template find

{vb:raw template_hook.postbit_signature_start}


add the following code above that but before you do, change

bbuserinfo, 6,7 to the usergroups you want to display the IP to, eg. bbuserinfo, 2,3

- 2,3 being admin, mod group eg.

and

change [userid] , array(1,2,3,4,5,88) to the user id's you dont want their IP's displayed

eg. user id's of moderators etc.


you can change the font size and color of font to suit your forum style


<vb:if condition="is_member_of($bbuserinfo, 6,7) AND !in_array($post[userid] , array(1,2,3,4,5,88))">

<br />

<span style="font-size:0.8em; color:#7a7a7a;"><a href="http://ipaddress.is/{vb:raw post.ip}" target="_blank">{vb:raw post.ip}</a></span>

</vb:if>


enjoy
:)