Hide Modules
+2
[DYOSZA]JiNRiKiSHA
Psycho Dancer
6 posters
Page 1 of 1
Hide Modules
/* Hide Gender, Age & Status */
/* Hide Member Since */
/* Hide Last Login */
/* Hide All */
Just Choose And Paste to your external js
- Spoiler:
- /* Hide Gender, Age & Status */
/*global ctrlpnl, xy*/
ctrlpnl = document.getElementById("0").getElementsByTagName("li");
xy = 0;
while (xy < ctrlpnl.length) {
if (ctrlpnl[xy].innerHTML.match(/[\S]*male,\s*[\d]*,\s*[\S\s]*?/i)) {
ctrlpnl[xy].parentNode.removeChild(ctrlpnl[xy]);
break;
}
xy += 1;
}
/* Hide Member Since */
- Spoiler:
- /* Hide Member Since */
/*global ctrlpnl, xy*/
ctrlpnl = document.getElementById("0").getElementsByTagName("li");
xy = 0;
while (xy < ctrlpnl.length) {
if (ctrlpnl[xy].innerHTML.match(/Member\s*Since:|<[\S]*?>[\S]*\s*[20][\d]*/i)) {
ctrlpnl[xy].parentNode.removeChild(ctrlpnl[xy]);
break;
}
xy += 1;
}
/* Hide Last Login */
- Spoiler:
- /* Hide Last Login */
if (pageViewerID !== pageOwnerID) {
/*global ctrlpnl, xy*/
ctrlpnl = document.getElementById("0").getElementsByTagName("li");
xy = 0;
while (xy < ctrlpnl.length) {
if (ctrlpnl[xy].innerHTML.match(/Last\s*Login:|[\d]*\s*(hours|days|week[s])/)) {
ctrlpnl[xy].parentNode.removeChild(ctrlpnl[xy]);
break;
}
xy += 1;
}
}
/* Hide All */
- Spoiler:
- /* Hide All */
/*global ctrlpnl, xy*/
ctrlpnl = document.getElementById("0").getElementsByTagName("ul");
xy = 0;
while (xy < ctrlpnl.length) {
if (ctrlpnl[xy].className === "data") {
ctrlpnl[xy].parentNode.removeChild(ctrlpnl[xy]);
break;
}
xy += 1;
}
Just Choose And Paste to your external js
Re: Hide Modules
thanks for sharing
[ MALIBOG ] Jendrick- ADMIN
- Posts : 96
Reputation : 16
Join date : 2009-05-26
Re: Hide Modules
thnx for sharing
[DYOSZA]BEBOT- MOD
- Posts : 227
Reputation : 172
Join date : 2009-05-26
Age : 34
Location : DOHA QATAR
Re: Hide Modules
tenchu s share
[DYOSZA]gane- MOD
- Posts : 221
Reputation : 122
Join date : 2009-05-26
Age : 27
Location : Baguio City, Philippines
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum