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 ] Change Member #
Topic Started: Dec 24 2011, 05:32 AM (319 Views)
Deleted User
Deleted User

Board Address: Private
Board Software: Zetaboards
Description: Change Member # to a different number while keeping other member #'s the same.

I have a code similar to what I'm requesting only I have a problem.

Example

Member # 1
Member # 2 I change to -> Member #0
.
.
.
.
Member #10 -> unfortuntly also becomes Member #0

Reason because the # shares the 0 digit. How do I fix this? Or can someone help here?

Goto Top
 
Quozzo
Member Avatar
By the blood of Sanguinius!
[ *  *  *  *  * ]
What code are you using? Try something like this
Code:
 
<script type='text/javascript'>
$('.user_info dt:contains(Member)').next().filter(function(){return $.trim($(this).text()) == "#2";}).text("#0");
</script>[code]
Offline Profile Goto Top
 
Deleted User
Deleted User

It's find I fixed the issue. Code is here for future references.

Code:
 
<script type="text/javascript">
$("td.c_username:contains(USERNAME)").parent().next().find("dd:contains('#2')").text("#0");

$("td.c_username:contains(USERNAME)").next().find("dd:contains('#2')").text("#0");


if (location.href.indexOf('/profile/PROFILEID') !== -1) {


}
</script>


Change "USERNAME" and "PROFILEID" in order to fit specific member.
Goto Top
 
Brendan
Member Avatar


Completed!

Your request has been completed. If you have any questions or concerns regarding the state of your request, please feel free to contact me via PM.
Offline Profile Goto Top
 
1 user reading this topic (1 Guest and 0 Anonymous)
« Previous Topic · Closed Requests · Next Topic »
Locked Topic