IP: Private

For the life of me, I can't find a setting - either to hide Mods' IP or to show Admins' IP. Gotta be hardcoded somewhere, but I'm not finding it.

 
I have no idea either. I never even noticed that I had it different.

I don't know if it's even a "feature", it doesn't sound like a setting I've heard of and I guess Frank doesn't know it either. t might be something in the templates?....

These are only visible to other moderators, though.

 
Last edited by a moderator:
I think I figured it out. It looks like this is a feature available to Admins, a default when you have Admin powers. Since zoogies has the ability to get into the codes and tinker around, he's got the power.

We could make this a feature for all Mods. Not sure it's necessary. Mostly just a curiosity.

 
I want mine to automatically default to the person's IP address that is looking at it......................that way they think I'm in their house! mwahahahaha OUR POWERS OUR LIMITLESS!!!

 
I agree and that theory sounds right, knapp, if it's for admins it should be for all the mods. I am thinking it might just be something hard coded into the skin templates, rather than being an invision feature. Could take a look around when I get the chance.

 
Last edited by a moderator:
I think I figured it out. It looks like this is a feature available to Admins, a default when you have Admin powers. Since zoogies has the ability to get into the codes and tinker around, he's got the power.

We could make this a feature for all Mods. Not sure it's necessary. Mostly just a curiosity.
Woo, I think I got it.

Wasn't a feature or anything, it was in the template for the skin [for future reference] under Topic View->Post.

Code:
<if test="postAdmin:|:$post['author']['g_access_cp']">
changed to

Code:
<if test="postAdmin:|:$post['author']['g_access_cp'] || $post['author']['g_is_supmod']"">
So 'postAdmin' just seems to be a comment that doesn't have any meaning; $post['author']['g_access_cp'] is the variable that determines whether the post author has access to the Admin CP, and $post['author']['g_is_supmod'] is the same variable for moderators.

 
Back
Top