We hope you enjoy your visit.

You're currently viewing our forum as a guest. This means you are limited to certain areas of the board and there are some features you can't use. If you join our community, you'll be able to access member-only sections, and use many member-only features such as customizing your profile, sending personal messages, and voting in polls. Registration is simple, fast, and completely free.


Join our community!


If you're already a member please log in to your account to access all of our features:

Username:   Password:
Locked Topic
[ C ] Hiding IP
Topic Started: Jan 18 2015, 01:39 PM (289 Views)
Freud
Member
[ * ]
Board Address: http://s15.zetaboards.com/Forthope/index/
Board Software: ZetaBoards
Description: I would like to hide members ips for all users including mods.

Thanks!
Offline Profile Goto Top
 
Kankuro
Member Avatar
かんくろ
[ *  *  *  *  * ]
Just change the mod's abilities. There is an option that says "Show IP Address" Change that to "no".
Unless you're talking about mods with super mod status.


but if you want an actual code...
Code:
 

<style type=text/css>
span.desc {
display:none;
}
</style>


Put that in the Javascripts section of your board template.
Edited by Kankuro, Jan 18 2015, 02:18 PM.
Offline Profile Goto Top
 
Freud
Member
[ * ]
Kankuro
Jan 18 2015, 02:18 PM
Just change the mod's abilities. There is an option that says "Show IP Address" Change that to "no".
Unless you're talking about mods with super mod status.


but if you want an actual code...
Code:
 

<style type=text/css>
span.desc {
display:none;
}
</style>


Put that in the Javascripts section of your board template.
Thanks but it still shows ip addresses on individual profiles.
And I also can't find the setting to switch ip address off
Bump
Edited by Freud, Jan 18 2015, 06:06 PM.
Offline Profile Goto Top
 
RichardInTN
Member Avatar
I believe in I.D.I.C.
[ *  *  * ]
As far as I can find, if you want to turn off IP addresses by the Admin CP, you have to do it individually, in "Member Search", find the member you want to disable IP's on, and click "Moderator Abilities", then check the "No" box beside "View Ip's" and the save it (box at the bottom).

This only has to be done for Moderators, because "regular members" can't see IP addresses by default.




edited for typo
Edited by RichardInTN, Jan 18 2015, 09:11 PM.
Offline Profile Goto Top
 
Cory
Member Avatar
Member
[ *  *  *  *  *  *  *  *  * ]
Administrators and global moderators will be able to view IP addresses. There isn't an option to disable this.

Forum moderators have an option to disable the viewing of IP addresses, as described above.

The CSS Kankuro gave you I wouldn't use because I believe span.desc may be used other places as well, but I may be thinking of td.c_desc. I'm not entirely sure, but the class name sounds like a global class.

Do you still want administrators to view IP addresses on the board, just not moderators?
Offline Profile Goto Top
 
Freud
Member
[ * ]
Cory
Jan 18 2015, 10:02 PM
Administrators and global moderators will be able to view IP addresses. There isn't an option to disable this.

Forum moderators have an option to disable the viewing of IP addresses, as described above.

The CSS Kankuro gave you I wouldn't use because I believe span.desc may be used other places as well, but I may be thinking of td.c_desc. I'm not entirely sure, but the class name sounds like a global class.

Do you still want administrators to view IP addresses on the board, just not moderators?
Don't want anyone to see ips
Offline Profile Goto Top
 
Cory
Member Avatar
Member
[ *  *  *  *  *  *  *  *  * ]
Admin CP Posted Image Themes Posted Image Board Template

Javascripts:
Code:
 
<style type="text/css">
td.c_postinfo span.desc {
display: none
}
</style>
Below the Board:
Code:
 
<script type="text/javascript">
$('dl.user_info dt:contains(Registered with IP Address)').next('dd').andSelf().hide();
</script>
Offline Profile Goto Top
 
Freud
Member
[ * ]
Perfect!

/close
Offline Profile Goto Top
 
Helena
Member Avatar
M is for Mod

Completed!

Your request has been completed. If you have any questions or concerns regarding the state of your request, please feel free to contact me via PM.
Offline Profile Goto Top
 
1 user reading this topic (1 Guest and 0 Anonymous)
« Previous Topic · Closed Requests · Next Topic »
Locked Topic