inherit
36389
0
Dec 25, 2005 14:45:08 GMT -8
Gallimaufry2
18
January 2005
gallimaufry2
|
Post by Gallimaufry2 on Jun 25, 2005 3:50:17 GMT -8
I can't find this in the code archives, but I'm not entirely sure what you'd call it. I'd like to disable the custom avatar option on my board so that people choose their avatar from the selections provided and can't add in their own to use. If anyone can help, I'll be very grateful.
|
|
inherit
36389
0
Dec 25, 2005 14:45:08 GMT -8
Gallimaufry2
18
January 2005
gallimaufry2
|
Post by Gallimaufry2 on Jun 27, 2005 14:46:08 GMT -8
Since it's been more than 24 hours, I wonder if I might discreetly bump this just in case someone has a bright idea about how to disable custom avatars, so that the only avatars available are the ones provided.
|
|
inherit
Beware the ever changing head
33588
0
Nov 18, 2023 0:32:44 GMT -8
Ross
19,039
November 2004
elindir
|
Post by Ross on Jun 27, 2005 15:08:02 GMT -8
Give this a go Main Footer. <script type="text/javascript"> <!-- /* remove custom avatars */ var ka=document.getElementsByTagName("tr") for (e=0;e<ka.length;e++) { if(location.href.match(/action=modifyprofile/gi) && ka[e].innerHTML.match(/Avatar URL:/) && ka[e+1].innerHTML.match(/Avatar Width:/) && ka[e+2].innerHTML.match(/Avatar Height/)){ ka[e].style.display="none"; ka[e+1].style.display="none"; ka[e+2].style.display="none"; ka[e-1].lastChild.innerHTML='<font size="-2">If you would like a picture displayed in your profile, you can use one of our images provided.</font>'; }} // --> </script>
|
|
inherit
36389
0
Dec 25, 2005 14:45:08 GMT -8
Gallimaufry2
18
January 2005
gallimaufry2
|
Post by Gallimaufry2 on Jun 28, 2005 11:04:25 GMT -8
Elindir, you're a star! Thank you very much indeed!
|
|
inherit
Beware the ever changing head
33588
0
Nov 18, 2023 0:32:44 GMT -8
Ross
19,039
November 2004
elindir
|
Post by Ross on Jun 28, 2005 11:20:32 GMT -8
You're very welcome
|
|