yes i know is not loaded but how/where i can fix that? is the recoded widnet layout (i try with another layout and work normaly)The jquery library, or jQuery UI library are not loaded, or other script is using $ function.
try with {$head} in <head>!
<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>
<link href="<?PHP echo $layout_name; ?>/imagess/fav.ico" rel="shortcut icon" type="image/x-icon" />
<link href="{$path}/templates/widnet/imagess/fav.ico" rel="shortcut icon" type="image/x-icon" />
Try changingtoPHP:<link href="<?PHP echo $layout_name; ?>/imagess/fav.ico" rel="shortcut icon" type="image/x-icon" />
PHP:<link href="{$path}/templates/widnet/imagess/fav.ico" rel="shortcut icon" type="image/x-icon" />
What happens if you move {$head} to just below where the title is rather than having it at the bottom of your head?
<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>