We hope you enjoy your visit.

You're currently viewing our forum as a guest. This means you are limited to certain areas of the board and there are some features you can't use. If you join our community, you'll be able to access member-only sections, and use many member-only features such as customizing your profile, sending personal messages, and voting in polls. Registration is simple, fast, and completely free.


Join our community!


If you're already a member please log in to your account to access all of our features:

Username:   Password:
Locked Topic
[ C ] Remove member number from posts
Topic Started: Mar 9 2010, 07:26 PM (708 Views)
TheTruth1
Member
[ * ]
Hiya,

I looked everywhere for this and cant seem to find it..

I would just like the code that removes the member number from posts

Board: http://z3.invisionfree.com/BTKScape/index.php?act=idx

EDIT: fixed the board link lmao oops.

Thanks!!
Edited by TheTruth1, Mar 9 2010, 08:02 PM.
Offline Profile Goto Top
 
Lout-ZNR
Member Avatar
He came, he saw...
[ *  *  * ]
Taken from here-
http://resources.zetaboards.com/topic/5079104/1/#new

Code:
 
<script type="text/javascript">
$(".user_info dt:contains('Member') + dd").remove()
$(".user_info dt:contains('Member')").remove()
</script>


Place that in the Board Template, either Below the Board or Above the Copyright.


oh, you messed your board link up as well :lol:
Offline Profile Goto Top
 
TheTruth1
Member
[ * ]
Oh I'm sorry this is an invisionfree board!
Edited by TheTruth1, Mar 9 2010, 08:05 PM.
Offline Profile Goto Top
 
Cory
Member Avatar
Member
[ *  *  *  *  *  *  *  *  * ]
Admin CP Posted Image Skinning & Styles Posted Image Board Wrappers Posted Image Footer
Code:
 
<script type="text/javascript">
var x = document.getElementsByTagName('span');
for (i = 0; i < x.length; i++) {
if (x[i].className == "postdetails") {
x[i].innerHTML = x[i].innerHTML.replace(/Member No.: (\d+)<br>/, "");
}
}
</script>
Offline Profile Goto Top
 
Mr. Dog
Member Avatar
Member
[ *  * ]
Lout
Mar 9 2010, 07:48 PM
Taken from here-
http://resources.zetaboards.com/topic/5079104/1/#new

Code:
 
<script type="text/javascript">
$(".user_info dt:contains('Member') + dd").remove()
$(".user_info dt:contains('Member')").remove()
</script>


Place that in the Board Template, either Below the Board or Above the Copyright.


oh, you messed your board link up as well :lol:
Thanks I've wanted rid of that pesky number for a long time (drops to knees and shouts...) "I am not a number, I am a free man" :P
Offline Profile Goto Top
 
TheTruth1
Member
[ * ]
Thanks guys!

This is complete! :)
Offline Profile Goto Top
 
Reid
Member Avatar
È una trappola!

Completed!

Your code request has been completed.

Thank you for using our Member Request system here at Zathyus Networks Resources! If you have any questions regarding this topic, feel free to PM the code creator or post a new topic in the request forum. :)

Have a nice day!
Offline Profile Goto Top
 
1 user reading this topic (1 Guest and 0 Anonymous)
« Previous Topic · Closed Requests · Next Topic »
Locked Topic