Quote:
Originally Posted by wideopen
I want to be able to turn off / remove the IP Address button that the Admins and Mods see . How do I do it?
Thanks in advance.
Come on any one?
|
If you mean the icons for report or infraction, this may work (remove code shown below):
Code:
-- To remove infraction link ---
<if condition="$show['infractionlink']"><a href="infraction.php?$session[sessionurl]do=report&p=$post[postid]" rel="nofollow"><img class="inlineimg" src="$stylevar[imgdir_button]/infraction.gif" alt="<phrase 1="$post[username]">$vbphrase[add_infraction_for_x]</phrase>" border="0" /></a> </if>
---------------------------------
-- To remove report icon --
<if condition="$show['reportlink']">
<a href="report.php?$session[sessionurl]p=$post[postid]" rel="nofollow"><img class="inlineimg" src="$stylevar[imgdir_button]/report.gif" alt="$vbphrase[report_bad_post]" border="0" /></a>
</if>
-----------------------------------
Just take out the if statements plus everything in between.