Aatar Pop Up Window Error [message #25685] |
Fri, 17 June 2005 14:41 |
thebugnut
Messages: 87 Registered: June 2005
Karma: 0
|
Member |
|
|
I have my Forum working, only a few small issues. One that is bugging me is the Avatar selection text link in the Registration form. When you click on the link it should open a Pop Up window where you can select the Avatar you want. Link is correct but I think there is a problem with the Java that Pops Open th Window.
Can anyone help with the the Avatar Section Window Pop Up Script?
|
|
|
|
|
Re: Aatar Pop Up Window Error [message #25697 is a reply to message #25695] |
Fri, 17 June 2005 17:20 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
Uhm... no window_open() is a FUDforum's JavaScript function defined by lib.js, found in the forum's main directory and loaded via the forum's header.
Looking at your site, you seem to have removed that line from the header, hence the error. You also removed the <BASE HREF> tag, which probably can explain the non-working smiley images.
FUDforum Core Developer
|
|
|
|
|
Re: Aatar Pop Up Window Error [message #25700 is a reply to message #25699] |
Fri, 17 June 2005 17:33 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
Well, you need to add 2 lines from header.tmpl that you've (I presume accidentally) removed.
<BASE HREF="{FULL_ROOT}">
<script language="javascript" src="lib.js" type="text/javascript"></script>
These lines need to be added to the "header" template section found inside header.tmpl. Once you do that rebuild the theme.
FUDforum Core Developer
|
|
|
|