• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

[ModernACC] Widnet Layout jquery UI

Exedion

Active Member
Joined
Jun 11, 2007
Messages
629
Reaction score
30
My Widnet layout not load the jquery UI (yes, the jquery is well configured, because work fine in others layouts)

how i can fix that???
BZwwn30vyh.png
 
try with {$head} in <head> :P!

tested and now, get another error look the part of header with javascripts, look this is the "head" part in index.tpl:

HTML:
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<title>{$title}</title>
<link href="<?PHP echo $layout_name; ?>/imagess/fav.ico" rel="shortcut icon" type="image/x-icon" />
<link rel="stylesheet" href="{$path}/templates/widnet/imagess/shadowbox.css" type="text/css" />
<link rel="stylesheet" href="{$path}/templates/widnet/imagess/templatep.css" type="text/css" />
<link rel="stylesheet" href="{$path}/templates/widnet/imagess/mod_yoo_slider.css" type="text/css" />
<link rel="stylesheet" href="{$path}/templates/widnet/imagess/mod_yoo_drawer.css" type="text/css" />
<link rel="stylesheet" href="{$path}/templates/widnet/imagess/mod_yoo_search.css" type="text/css" />
<link rel="stylesheet" href="{$path}/templates/widnet/imagess/mod_yoo_carousel.css" type="text/css" />
<script type="text/javascript" src="{$path}/templates/widnet/imagess/jquery.js"></script>
<script type="text/javascript" src="{$path}/templates/widnet/imagess/mootools.js"></script>
<script type="text/javascript" src="{$path}/templates/widnet/imagess/caption.js"></script>
<script type="text/javascript" src="{$path}/templates/widnet/imagess/mod_yoo_slider.js"></script>
<script type="text/javascript" src="{$path}/templates/widnet/imagess/mod_yoo_drawer.js"></script>
<script type="text/javascript" src="{$path}/templates/widnet>/imagess/mod_yoo_search.js"></script>
<script type="text/javascript" src="{$path}/templates/widnet/imagess/mod_yoo_carousel.js"></script>

<script type="text/javascript" src="{$path}/templates/widnet/imagess/ajax.js"></script>
<link rel="stylesheet" type="text/css" href="{$path}/templates/widnet/imagess/style.css"/>
<link rel="stylesheet" type="text/css" href="{$path}/templates/widnet/imagess/comment_style.css"/>
<script type="text/javascript" src="{$path}/templates/widnet/imagess/plugins/system/yoo_effects/yoo_effects.js.php@lb=1&re=1&sl=1"></script>
<script type="text/javascript" src="{$path}/templates/widnet/imagess/template.js"></script>
{$head}
</head>

nSPFF98CTn.png
 
Last edited:
Try changing
PHP:
<link href="<?PHP echo $layout_name; ?>/imagess/fav.ico" rel="shortcut icon" type="image/x-icon" />
to
PHP:
<link href="{$path}/templates/widnet/imagess/fav.ico" rel="shortcut icon" type="image/x-icon" />
 
Try changing
PHP:
<link href="<?PHP echo $layout_name; ?>/imagess/fav.ico" rel="shortcut icon" type="image/x-icon" />
to
PHP:
<link href="{$path}/templates/widnet/imagess/fav.ico" rel="shortcut icon" type="image/x-icon" />

Thanks but still the same error...
 
What happens if you move {$head} to just below where the title is rather than having it at the bottom of your head?
 
PHP:
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<title>{$title}</title>
<link href="{$path}/imagess/fav.ico" rel="shortcut icon" type="image/x-icon" />
<link rel="stylesheet" href="{$path}/templates/widnet/imagess/shadowbox.css" type="text/css" />
<link rel="stylesheet" href="{$path}/templates/widnet/imagess/templatep.css" type="text/css" />
<link rel="stylesheet" href="{$path}/templates/widnet/imagess/mod_yoo_slider.css" type="text/css" />
<link rel="stylesheet" href="{$path}/templates/widnet/imagess/mod_yoo_drawer.css" type="text/css" />
<link rel="stylesheet" href="{$path}/templates/widnet/imagess/mod_yoo_search.css" type="text/css" />
<link rel="stylesheet" href="{$path}/templates/widnet/imagess/mod_yoo_carousel.css" type="text/css" />
<script type="text/javascript" src="{$path}/templates/widnet/imagess/jquery.js"></script>
<script type="text/javascript" src="{$path}/templates/widnet/imagess/mootools.js"></script>
<script type="text/javascript" src="{$path}/templates/widnet/imagess/caption.js"></script>
<script type="text/javascript" src="{$path}/templates/widnet/imagess/mod_yoo_slider.js"></script>
<script type="text/javascript" src="{$path}/templates/widnet/imagess/mod_yoo_drawer.js"></script>
<script type="text/javascript" src="{$path}/templates/widnet>/imagess/mod_yoo_search.js"></script>
<script type="text/javascript" src="{$path}/templates/widnet/imagess/mod_yoo_carousel.js"></script>

<script type="text/javascript" src="{$path}/templates/widnet/imagess/ajax.js"></script>
<link rel="stylesheet" type="text/css" href="{$path}/templates/widnet/imagess/style.css"/>
<link rel="stylesheet" type="text/css" href="{$path}/templates/widnet/imagess/comment_style.css"/>
<script type="text/javascript" src="{$path}/templates/widnet/imagess/plugins/system/yoo_effects/yoo_effects.js.php@lb=1&re=1&sl=1"></script>
<script type="text/javascript" src="{$path}/templates/widnet/imagess/template.js"></script>
{$head}</head>

This should work, if it dosen't I have no idé what it could be. No more problems here..

WibbenZ
 
Back
Top