inherit
Proboards Legend
212
0
May 11, 2006 12:32:55 GMT -8
california
21,035
December 1999
california
|
Post by california on Jun 19, 2005 23:39:47 GMT -8
This code will allow you to change the words "Karma", "Exalt" and "Smite" to whatever you want. It will only affect the words as they appear in the miniprofile, that is, Karma: X will be changed to whatever: X and [ Exalt | Smite ] will be changed to [ something | something ]. It won't affect the admin panel or anywhere else besides the minprofile.
<script type="text/javascript"> <!-- /* change "karma" words by california */
var karmaReplace="Reputation"; var exaltReplace="Bless"; var smiteReplace="Curse";
var td=document.getElementsByTagName("td"); if(location.href.match(/action=(display|goto|viewprofile|search2|recent|pmview)/) || document.title.match(/\s-\sPreview/)){ for(i=0;i<td.length;i++){ if(td.width=="20%" && td.className.match(/windowbg/) && td.innerHTML.match(/Karma:/i) && !td.innerHTML.match(/\<input/i)){ var tempA=td.innerHTML.replace('Karma:',karmaReplace+':'); var tempB=tempA.replace('Exalt',exaltReplace); var tempC=tempB.replace('Smite',smiteReplace); td.innerHTML=tempC; } } } // --> </script>
Global Footer
You will end up with something like this:
Reputation: 21 [ Bless | Curse ]
in the miniprofile
|
|