• Does anyone know how to make it so that users cannot see other users’ email and IP addresses in the Manage\Comments section of the admin panel? As things are, even users with the lowest permissions rating can access this information. any help would be appreciated greatly. thanks 😉

Viewing 5 replies - 1 through 5 (of 5 total)
  • They can only see them for comments on their posts, right? I think the idea is to allow posters to be able to contact the people who comment on their posts.

    If you want to take a stab at editing your control panel files, you could find the place where this info is displayed and conditionalize it using something like this:

    <?php if ($user_level > 5) { (code that displays info you want to hide) }; ?>

    so it doesn’t show up in the admin panel.

    Thread Starter greeenkaos

    (@greeenkaos)

    thanks for the reply! i will look into altering the code there. you’ve given me some idea of where to start. ty

    Hi greeenkaos,

    Did you have any luck with hiding email and IP from users? I want to do exactly same thing on my site. If you’ve got it working could you please let me know how to do it. Thanks.

    Ok, I’ve worked it out. I posted the instructions on how to do this here

    Thread Starter greeenkaos

    (@greeenkaos)

    Hey, h8dk97, thanks for posting about this, I’ll check it out.

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘don’t want users to see other users email and IP addresses’ is closed to new replies.