Welcome Guest [Log In] [Register]
This board has been archived and is no longer accepting new questions. If you have a support question for your ZetaBoard, please visit us at the new support board. Registration is free and easy.


Visit the NEW ZetaBoards Support forum!

Username:   Password:
Add Reply
Remove Member no#
Topic Started: Dec 9 2007, 06:40 AM (2,052 Views)
daaniel
Member Avatar
Boored =[
[ *  * ]
Thanks to HolySavior for the basis of this code, i only did a small edit.

You dont have to edit anything, just follow these steps
Admincp > Themes > Board Template > Javascripts
Preview : http://s1.zetaboards.com/aphotic/index/
Code:
 
<script type="text/javascript"><!--
// created by HolySavior of iFusion.
// Edited by Daniel of http://www.recessforums.co.uk
$(document).ready(function() {
$("DT").contains("Member").empty().next().empty();
});
//--></script>
Edited by daaniel, Dec 9 2007, 06:48 AM.
Offline Profile Quote Post Goto Top
 
thelegend1987
Member
[ * ]
Same as the other removal code, this one requires a small change due to the change to JQuery 1.2.2



Code:
 

<script type="text/javascript">
$(document).ready(function() {
$("DT:contains('Member')").empty().next().empty();
});
</script>

Offline Profile Quote Post Goto Top
 
Victrixs
Member Avatar
Website Developer
[ *  *  * ]
I might use this.
Offline Profile Quote Post Goto Top
 
Ziz
Member Avatar
Prototype - Trinity
[ *  * ]
It works, but it leaves an awkward space in the mini-profile between the 'Group' and 'Joined' lines. Is there anyway to eliminate this?
Offline Profile Quote Post Goto Top
 
Viral
Member Avatar
i'm stanley nao
[ *  *  *  *  * ]
This might work:
Code: HTML
 

<script type="text/javascript">
$(document).ready(function() {
$("DT:contains('Member')").remove().next().remove();
});
</script>


Or:

Code: HTML
 
<script type="text/javascript">
$(document).ready(function() {
$("DT:contains('Member')").hide().next().hide();
});
</script>
Offline Profile Quote Post Goto Top
 
Ziz
Member Avatar
Prototype - Trinity
[ *  * ]
First one leaves the member number itself visible, but the second one works like a charm. Thanks!
Offline Profile Quote Post Goto Top
 
Victrixs
Member Avatar
Website Developer
[ *  *  * ]
I kinda like the member number so I might leave it.
Offline Profile Quote Post Goto Top
 
Spark
Member Avatar
Nukem Corporation
[ *  * ]
No need for all the extra parts, this works fine:
Code:
 
<script type="text/javascript">
$("DT:contains('Member')").empty().next().empty();
</script>
Offline Profile Quote Post Goto Top
 
Haze378
Member Avatar
Member
[ * ]
The second code that Viral posted works perfectly. Thanks!
Offline Profile Quote Post Goto Top
 
dhruv
Member Avatar
Member
[ * ]
Hmm the code has a startle.

So when the page loads it still is there but then a second later goes but page like jumps then is ok.

Isn't it possible so this doesn't happen?
Offline Profile Quote Post Goto Top
 
1 user reading this topic (1 Guest and 0 Anonymous)
Go to Next Page
« Previous Topic · User Created Codes · Next Topic »
Add Reply