Changin the tex |
![]() ![]() |
Changin the tex |
Aug 11 2004, 09:34 PM
Post
#1
|
|
|
Senior Member ![]() ![]() ![]() Group: Member Posts: 49 Joined: Aug 2004 Member No: 39,077 |
ok ive tried like 1,0000000000000000000 times to do it.. but the code is soo confusing.. how do yur change yur tex for like yur name and yur country and sate(like your information ont he left side) how do yu change it to wut yu wnat to sey.. like i seid the code on this site ive tried like 10 times and i dunt get it.. im confused.. please help :-/
|
|
|
|
Aug 11 2004, 09:36 PM
Post
#2
|
|
![]() Look its... ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Official Member Posts: 5,817 Joined: Feb 2004 Member No: 4,767 |
use the word replacer and change it should be hard
use this http://www.createblog.com/forums/index.php?showtopic=230 |
|
|
|
Aug 12 2004, 10:33 AM
Post
#3
|
|
|
Senior Member ![]() ![]() ![]() Group: Member Posts: 49 Joined: Aug 2004 Member No: 39,077 |
i tried but it diddn work.. i think im doin it wrong..
|
|
|
|
Aug 12 2004, 10:35 AM
Post
#4
|
|
|
Senior Member ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 3,826 Joined: Jan 2004 Member No: 2,330 |
post your code here so we can see what you're doing wrong
|
|
|
|
Aug 12 2004, 10:39 AM
Post
#5
|
|
|
Senior Member ![]() ![]() ![]() Group: Member Posts: 49 Joined: Aug 2004 Member No: 39,077 |
<!-- begin code provided by createblog.com -->
<script type="text/javascript"> // // © EasterEgg, http://www.xanga.com/easteregg // // For use at Xanga only. // // This script replaces any given word or text fragment with // whatever you want: new words and fragments, or even HTML! // // Actually it's pretty simple: add the words or fragments you // wish to replace to the array "oldWords" (each word placed // between double quotation marks, and separated by colons as you // can see below) and add their replacements to the array "newWords", // at the same position as the original words in "oldWords". // The example is pretty self-explaining. // // The script is case sensitive, meaning that if you add "something" // to "oldWords" array it will not recognize "SOMETHING", or "SoMetHInG". // // You can adjust the existing arrays in this code as you see fit, // as long as both arrays keep the same size (same amount of words // in both arrays), otherwise a script error will occur. // // Copy this entire code and paste in the webstats box at your // Look and Feel page. // // You're free to use this script as long as this comment remains intact, // and as long you won't use it to cripple the comments of your visitors; // after all, no one likes his/her words getting twisted... // function replaceWords() { // ***add the words or fragments you wish to replace below var oldWords = new Array( "Publish Comments", "add eProps", "eprop", "eProps", "add comments", "comment", "comments", "email it", "view entire profile", "sign my guestbook", "My Blogrings", "Posting Calendar", "Get Involved!", "sign out", "Name:", "Birthday:", "Gender:", "State:", "Country:", "Interests:", "Expertise:", "Website", "Email", "Member since:"); // *** add the replacing words or fragments below var newWords = new Array( "Subscriptions", "Publish Comments", " Where is the love?", "eprop", "eProps", "HolLa back YoungIn", "comment", "comments", "email it", "view entire profile", "sign my guestbook", "My Blogrings", "Posting Calendar", "Get Involved!", "sign out", "kAll me :", "gImme Presents on:", "Gender:", "k `shun:", "k`shun:", "Interests:", "Im the best at:", "Website", "Email", "Member since:"); allTableData = document.getElementsByTagName('td'); allTableHeaders = document.getElementsByTagName('th'); var collections = new Array(allTableData,allTableHeaders); for (var k = 0; k < collections.length; ++k ) { for (var i = 0; i < collections[k].length; ++i ) { if (collections[k][i].innerHTML.indexOf('TABLE') == -1) { for ( var n = 0; n < oldWords.length; ++n ) { var indx = collections[k][i].innerHTML.indexOf(oldWords[n]) while (indx != -1) { var replacement = ''; indx = collections[k][i].innerHTML.indexOf(oldWords[n]); replacement = collections[k][i].innerHTML.replace(oldWords[n], newWords[n]); collections[k][i].innerHTML = replacement; break; } } } } } } replaceWords(); </script> <!-- end code provided by createblog.com --> Wut Did i Do wrong?! cus it wont work?! |
|
|
|
Aug 12 2004, 10:47 AM
Post
#6
|
|
|
Senior Member ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 3,826 Joined: Jan 2004 Member No: 2,330 |
hmm it looks right to me.. did you try putting into your website stats?
edit:// i tested out your code and some of your words are mixed around.. if there's a word that you don't want to change.. say for example "publish comments". if you don't wnat to change that, you can take that part out but be sure you take it out from both sections.. the old words and the new words.. |
|
|
|
Aug 12 2004, 11:03 AM
Post
#7
|
|
|
Senior Member ![]() ![]() ![]() Group: Member Posts: 49 Joined: Aug 2004 Member No: 39,077 |
ok i got it right..i put it in my html instead of website status.. 1 more question.. when i change my eprops and commenst it adds an s on that.. how do i change it??
|
|
|
|
Aug 12 2004, 11:04 AM
Post
#8
|
|
![]() :hammer: ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Staff Alumni Posts: 9,849 Joined: Mar 2004 Member No: 7,700 |
QUOTE(AlwaiizSecondBest @ Aug 12 2004, 9:03 AM) ok i got it right..i put it in my html instead of website status.. 1 more question.. when i change my eprops and commenst it adds an s on that.. how do i change it?? You're going to have to use the link replacing code for that. |
|
|
|
Aug 12 2004, 11:30 AM
Post
#9
|
|
|
Senior Member ![]() ![]() ![]() Group: Member Posts: 49 Joined: Aug 2004 Member No: 39,077 |
ok thanks for your help everybody!
|
|
|
|
![]() ![]() |