Info
- 6 posts
- 4 voices
- Started 2 years ago by gardenfl
- Latest reply from batrachoid
- This topic is resolved
Changing Privilages For Member Roles
-
- Posted 2 years ago #
Here's my problem.
To match blog and forum member roles I needed to make forum members with Author privileges on WP, moderators on the forum. This was fine except moderators can see IP addresses and while I have assured them that members cannot, they are a little freaked out thinking everybody can see IP addresses.
Is there a way to change Moderator privileges so that they cannot see IP addresses?
There is a plugin called 'Role Manager' but it does not install, and I could find no help with it on plugin home website, so assume it is dead. ???
-
- Posted 2 years ago #
Role Manager only works on version 1.0 and up...
_ck_ just wrote a plugin last week that removes the ability for moderators to see IPs anywhere in bbPress:
http://bbpress.org/forums/topic/how-do-i-remove-the-posters-ip-address-from-the-post-display#post-55575Just stick it in a plugin information wrapper:
http://codex.wordpress.org/Writing_a_Plugin#Standard_Plugin_InformationAnd you should be good to go!
-
- Posted 2 years ago #
In bb-includes/functions.bb-capabilities.php
under list of “moderator” roles change
'view_by_ip' => true
to
'view_by_ip' => false
-
- Posted 2 years ago #
Yes, but modding core files is bad :) Makes upgrades a PITA.
-
- Posted 2 years ago #
Thanks. I fixed it.
Funny that even while I was looking for a solution I got a note from a member who wanted to know how she could write about a sensitive issue under a different name. I told her to create a different member account. It occurs to me this is exactly the sort of situation where you might want to limit IP viewing to the Admin.
-
- Posted 2 years ago #
@Ipstenu, I knew there had to be a reason no one else had suggested it. :\
-
You must log in to post.