Log In · Register

 
How to change this...?!, links
senfail1
post Mar 8 2005, 06:41 PM
Post #1


Member
**

Group: Member
Posts: 14
Joined: Feb 2005
Member No: 99,207



once again...okay...how do i change Name Interests Expertise to say something else...and get eprops and comments to say something else too...? i hope that made sense..
 
 
Start new topic
Replies (1 - 15)
Pulchritude
post Mar 8 2005, 07:07 PM
Post #2


Tu es laid.
*******

Group: Official Member
Posts: 3,913
Joined: Feb 2005
Member No: 106,675



heres the one for erops...

http://help.xanga.com/replacelinks.htm

and for the other one i couldnt find in createblog scripts but you should read this anyways...

http://help.xanga.com/renameprofiletitle.htm
 
lovescream
post Mar 8 2005, 07:10 PM
Post #3


define our lives for us.
********

Group: Staff Alumni
Posts: 11,656
Joined: Aug 2004
Member No: 43,293



ah, duh.

Use the "replace any text" script thing. :] it allows to replace any word you need. follow the array. DO NOT REMOVE ANYTHING. If you dont want the word to change, leave it the same. :]
http://www.createblog.com/forums/index.php?showtopic=230
 
senfail1
post Mar 8 2005, 07:15 PM
Post #4


Member
**

Group: Member
Posts: 14
Joined: Feb 2005
Member No: 99,207



that code isnt working..
 
lovescream
post Mar 8 2005, 07:17 PM
Post #5


define our lives for us.
********

Group: Staff Alumni
Posts: 11,656
Joined: Aug 2004
Member No: 43,293



it should. i used to use it, and took it down just this morning.
you're defintly doing something wrong.

post up your code that you've edited...
 
senfail1
post Mar 8 2005, 07:36 PM
Post #6


Member
**

Group: Member
Posts: 14
Joined: Feb 2005
Member No: 99,207





This post has been edited by Spiritedfreak: Mar 8 2005, 07:41 PM
 
lovescream
post Mar 8 2005, 07:40 PM
Post #7


define our lives for us.
********

Group: Staff Alumni
Posts: 11,656
Joined: Aug 2004
Member No: 43,293



you did it wrong.

k, say i wanted 'my blogrings' to be 'i'm a fan of...'
and gender: to be i'm a girl, i'm a...


this is what it would look like: (bold parts, focus on them)

QUOTE
<script type="text/javascript">
//
// &copy; 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(
        "Subscriptions",
        "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",
        "add eProps",
        "eprop",
        "eProps",
        "add comments",
        "comment",
        "comments",
        "email it",
        "view entire profile",
        "sign my guestbook",
       "i'm a fan of...",
        "Posting Calendar",
        "Get Involved!",
        "sign out",
        "Name:",
        "Birthday:",
        "i'm a girl, i'm a...",
        "State:",
        "Country:",
        "Interests:",
        "Expertise:",
        "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>


so basically, dont even TOUCH the first row, then on the 2nd one, change whatever u want.
 
senfail1
post Mar 8 2005, 07:42 PM
Post #8


Member
**

Group: Member
Posts: 14
Joined: Feb 2005
Member No: 99,207



ooo haha i think i get it...thanks a bunch....let me try it again and see if it works
 
senfail1
post Mar 8 2005, 07:46 PM
Post #9


Member
**

Group: Member
Posts: 14
Joined: Feb 2005
Member No: 99,207



okay i really dont know wahts wrong now...it didnt work again
 
lovescream
post Mar 8 2005, 07:53 PM
Post #10


define our lives for us.
********

Group: Staff Alumni
Posts: 11,656
Joined: Aug 2004
Member No: 43,293



Post up your code AGANI. and next time, use the edit button instead of double posting. also, dont forget to use the codebox while posting up your code.

CODE
[Codebox]CODEHERE[/CODEBOX]

k?
 
senfail1
post Mar 8 2005, 07:55 PM
Post #11


Member
**

Group: Member
Posts: 14
Joined: Feb 2005
Member No: 99,207



 
lovescream
post Mar 8 2005, 08:03 PM
Post #12


define our lives for us.
********

Group: Staff Alumni
Posts: 11,656
Joined: Aug 2004
Member No: 43,293



try now?




placed it in website stats, also?
 
senfail1
post Mar 8 2005, 08:08 PM
Post #13


Member
**

Group: Member
Posts: 14
Joined: Feb 2005
Member No: 99,207



its still not working...

i put the code in website stats and clicked preview and still nothing...
 
*mona lisa*
post Mar 8 2005, 08:50 PM
Post #14





Guest






don't click preview. sometimes, the scripts don't work. always click save changes. if you don't like it, you can always go back and delete it.
 
JoeShmoe
post Mar 18 2005, 03:45 PM
Post #15


Newbie
*

Group: Member
Posts: 1
Joined: Mar 2005
Member No: 114,600



Along those lines, I was wondering if osmeone could help me. I used this code, and I'd like to change "comments" to "Snapples drank" but for some reason, it always comes out "Snapple dranks". I've checked the code several times, and every time, it screws up. Here's my code:

 
kill me please
post Mar 18 2005, 05:03 PM
Post #16


im addicted to my car<3
*****

Group: Member
Posts: 635
Joined: Jan 2005
Member No: 92,236



uh try it now
 

Closed TopicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members: