|
|
Post by Wormopolis on Apr 8, 2010 8:43:28 GMT -8
Guest wouldnt be hard, you could use switchit for that.
Banned however is going to be difficult unless you are putting banned people into their own group?
|
|
victory1
Full Member
Posts: 102
victory1 said 0 great things
|
Post by victory1 on Apr 8, 2010 8:47:35 GMT -8
Guest wouldnt be hard, you could use switchit for that. Banned however is going to be difficult unless you are putting banned people into their own group? I could do that for banned. So there would be no code needed if I create a ban group (I only have 1 person on my ban list so far)? Sound simple enough.
|
|
|
Post by Wormopolis on Apr 8, 2010 17:18:54 GMT -8
yeah honestly it will be less cwork on your (and the browser's) part to put banned people into their own group and use UBBC to make the group name that image.
Guests can be handled via switchit, but the regular switchit will replace everywhere. Subdevo has one that does a switchit for just MP I believe.
|
|
victory1
Full Member
Posts: 102
victory1 said 0 great things
|
Post by victory1 on Apr 12, 2010 18:25:54 GMT -8
I found the Mini-Profile Replace Anything Global Code of SubDevo's but no matter how much I play with it and move it around, it would not replace the Guest in the Mini profile. Oh well, at least I know what do to with Banned.
|
|
|
Post by Wormopolis on Apr 12, 2010 21:01:58 GMT -8
ok.. hold on then and will write up something quick.
|
|
|
Post by Wormopolis on Apr 12, 2010 21:53:02 GMT -8
<script type="text/javascript"> <!-- // replace "guest" in MP with image // request by victory
gImage="http://i197.photobucket.com/albums/aa250/WORMOPOLIS/guest.jpg";
for (tds=document.getElementsByTagName('td'), e=0; e<tds.length; e++) { if (tds[e].width=='20%' && tds[e].vAlign=='top' && tds[e].innerHTML.match(/<br>Guest<br>/i)) { tds[e].innerHTML=tds[e].innerHTML.replace(/Guest/,'<img src="'+gImage+'" \/>'); } }
// --> </script>
|
|
victory1
Full Member
Posts: 102
victory1 said 0 great things
|
Post by victory1 on Apr 13, 2010 4:29:20 GMT -8
The code worked! Thank you..
|
|