[DEV] ISFL Forums
Buttersquach and Citizen of Adraa punishment - Printable Version

+- [DEV] ISFL Forums (http://dev.sim-football.com/forums)
+-- Forum: League Office (http://dev.sim-football.com/forums/forumdisplay.php?fid=7)
+--- Forum: Punishments (http://dev.sim-football.com/forums/forumdisplay.php?fid=279)
+--- Thread: Buttersquach and Citizen of Adraa punishment (/showthread.php?tid=15535)

Pages: 1 2 3


Buttersquach and Citizen of Adraa punishment - 37thchamber - 09-19-2019

(09-19-2019, 12:52 AM)Daybe Wrote:on a side note @[adwyer] is there any way to disable IP addresses being viewable to people with mod perms?
its... possibly doable through the board wrappers. ill do some tests.


EDIT: ok that was easier than i expected.

inspecting the HTML elements, there is a span class "ip_address"
updating the style sheet to give that the property "display: none" should hide ip addresses from *everyone*

literally just add

Code:
.ip_address {
  display: none;
}

to all the style sheets in the admin cp

just tested this on my staging forum and it works.

you're welcome.


Buttersquach and Citizen of Adraa punishment - Mavfatha - 09-19-2019

(09-19-2019, 03:13 AM)37thchamber Wrote:its... possibly doable through the board wrappers. ill do some tests.


EDIT: ok that was easier than i expected.

inspecting the HTML elements, there is a span class "ip_address"
updating the style sheet to give that the property "display: none" should hide ip addresses from *everyone*

literally just add

Code:
.ip_address {
  display: none;
}

to all the style sheets in the admin cp

just tested this on my staging forum and it works.

you're welcome.

Hmm I wasn't able to find any admin CP specific style sheets (or to be more specific, I know they exist because I just changed mine to a dope green color, but I can't find how to edit them). Might be above my paygrade though. @ADwyer87 or maybe @iamslm22 do you guys know?