changing the names for your subscription module |
changing the names for your subscription module |
Jul 7 2004, 04:11 PM
Post
#1
|
|
|
Senior Member ![]() ![]() ![]() Group: Member Posts: 30 Joined: Jun 2004 Member No: 23,820 |
hey guys...does n e body know the code for changing the usernames in your subscription modules?
|
|
|
|
![]() |
Jul 7 2004, 04:56 PM
Post
#2
|
|
![]() I'm just a little bit crazy... ![]() ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 1,119 Joined: Jun 2004 Member No: 19,760 |
It's in the scripts section.
I'll find a link. CODE <!-- begin code provided by createblog.com --> <script language=javascript> <!-- var links = document.getElementsByTagName ('a'); for (var l = 0; l < links.length; l++) { str = links[l].innerHTML; if (str.match (/\d+:\d+ (am|pm)/i)) links[l] else if (str.match (/USERNAME/i)) links[l].innerHTML = str.replace (/USERNAME/i, "TEXT"); var paras = document.getElementsByTagName ('p'); for (var p = 0; p < paras.length; p++) { str = paras[p].innerHTML; if (str.match (/smileys/gi)) paras[p].innerHTML = str.replace (/smileys/gi, ":)");} //--> </script> <!-- end code provided by createblog.com --> USERNAME = name of ur subscriber TEXT = ur own text Add this... CODE <!-- begin code provided by createblog.com --> else if (str.match (/USERNAME/i)) links[l].innerHTML = str.replace (/USERNAME/i, "TEXT"); <!-- end code provided by createblog.com --> 4 more if u need it... Next time, please look. |
|
|
|
ani33 changing the names for your subscription module Jul 7 2004, 04:11 PM
LatinaLady i dont want to create a whole topic but what do yo... Jul 7 2004, 05:08 PM
ani33 QUOTE(lilphoenix @ Jul 7 2004, 4:56 PM)It... Jul 7 2004, 05:50 PM
ji_cabinx CODE<!-- begin code provided by createblog... Jul 7 2004, 06:24 PM
ani33 CODE<!-- begin code provided by createblog... Jul 7 2004, 06:35 PM
lil_shadow cant u jus use the code for replacing links? its i... Jul 8 2004, 06:55 PM
lookitskim CODE<!-- begin code provided by createblog... Jul 8 2004, 07:04 PM![]() ![]() |