Hi, I'm newbie here 
I saw many people ask on how to hide the status, last login etc.
These simple tricks will hide your status or last login at your control panel box
Any suggestions & comments are much appreciated so I'll continue to update the code
Hide Gender, Age, Status
Screenshot
Code/* 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
Screenshot
Code/* 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
Screenshot
Code/* 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 your information (JS version)
Code/* 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;
}Last edited by feruzz (2008-05-14 08:31:37)
|

1st to comment..!!! nyc 1 sir feruzz..
newbie?? jahaha.. gonna try this one.!!
|

2nd comment, cihuy,
hm, simple script but usefull,
thanks for share ![]()
@feruzz
one question, u're new newbie, right!? 
Last edited by rudyhartadi (2008-05-11 10:55:16)
|

great trick....the great ferruz has done it again!!!
![]()
|

feruzz wrote:
Hide all your information
CSS Version:
.controlpanel .data {display:none!important;}
nice trick bro..![]()

|

there are so many users who ask this code in the help section. thanks again sir feruzz. im gonna share this one to my friends in the help section.
![]()
|

here comes the genuis...
>>great script feruzz..![]()
|
This is a cool way of ensuring privacy! Great trick!
I've always wanted this. +1
If I would just replace the info, how could I do it? I think this code has that potential!
Last edited by dr.love (2008-05-11 12:25:20)
|
this is great..
thanks!
the recent
one thats the same thing as this
is sort of hard to understand
but dang..
this one awesome.
for those who have jobs
need this
to hide their last log-in
hehe.. 
Last edited by losher29 (2008-05-11 18:59:21)
|

how about if we want to change the information? (personalize) is it possible sir feruzz?

|
why it doesn't working on my fs profile??

I copy-paste the following codes in my Edit Profile>Customized>Customized CSS
and it's doesn't work.. help!
|
hi .. help me guys .. how i can beautify my friendster account?? the codes here in friendstertalk doesnt work on me .. 
|
where can i put the code?in the about me section?or css section?thanks!!!
|
help,im still confused.it doesnt work on my profile.
|
Hey.. I'm truly newbie here...


I've create the css file, and using newest linker,
http://the-cradle.users-board.com/JS-Linker-h63.htm
but there is nothing happen with my profile. (I use firefox2.0.0)
the status still appear...
please help...........................................



|