View Full Version : please help!! -xanga-


bAybEedEe
07-14-2003, 05:55 AM
Hey Everyone! okay i got the code for the eprops and comments changing thing and it doesn't work!! if i log in my account and i put in the code only eprops change and not comments... but ... nothing changes if i just go to my site with out logging in. It just has "eprops" and "comments" like nothing changed.. Please help!!

i edited the most i could from your post. Please use atleast some kind of english to let other people at least understand what you are talking about, so they can help ~mod

MaGiCSuN
07-14-2003, 12:17 PM
this is the script:

<script type="text/javascript">
//
// 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(
"Sites I Read",
"Publish Comments",
"eprops",
"eProps",
"comments",
"Comments",
"view entire profile",
"sign my guestbook",
"My Blogrings");

// *** add the replacing words or fragments below
var newWords = new Array(
"Sites I haunt <img src='http://www.xanga.com/Images/smiley1.gif'>",
"Reply... get it out of your system!",
"props",
"props",
"replies",
"replies",
"Learn more about me...",
"View / Sign my guestbook",
"Rings I joined");

allTableData = document. getElementsByTagName('td'
);
allTableHeaders = document. getElementsByTagName('th'
);

var collections = new Array(allTableData,allTab
leHeaders);

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>

the bold parts are the parts you really have to read carefully. YOu can't use twisted language, like you used before in your post. And you have to copy the code in a special area (the second bold part)

the red part are the words that are on your xanga. The original ones. THe blue part are the words you can edit yourself. Those are the words that will show up after you added this code

Love,
Mirna