Quote:
Originally Posted by goshalim
Hi ,
How can i hide a specific IP from a user ? so even the moderetors and super moderator cannot see it ?
I do not want to block this function from them , just to hide a spesific user.
Thanks
|
To hide it where? For ex, in posts you can hide it with a qyery like this:
HTML Code:
UPDATE post SET ipaddress = '' WHERE userid = x;
And replace x with the actual id of the user whose ip you want to hide in posts. And if your db tables have a prefix you should apend it next to the tables name at the query above.