what file(s) do I need to do this in? I read a post somewhere her on the boards with that exact info in it and I looked around but not sure what files I need to adjust to get this working I am thinking maybe the html_header.php in my includes/template/csutom_template/common folder this is the code I have for calling jqeury I think it is at the very bottom.
PHP Code:
<?php
/**
* load the loader files
*/
if($RI_CJLoader->get('status') && (!isset($Ajax) || !$Ajax->status())){
$RI_CJLoader->autoloadLoaders();
$RI_CJLoader->loadCssJsFiles();
$files = $RI_CJLoader->header();
foreach($files['css'] as $file)
if($file['include']) {
include($file['src']);
} else if (!$RI_CJLoader->get('minify_css') || $file['external']) {
echo "<link rel=\"stylesheet\" type=\"text/css\" href='{$file['src']}' />\n";
} else {
echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"min/?f={$file['src']}&".$RI_CJLoader->get('minify_time')."\" />\n";
}
foreach($files['jscript'] as $file)
if($file['include']) {
include($file['src']);
} else if(!$RI_CJLoader->get('minify_js') || $file['external']) {
echo "<script type='text/javascript' src='{$file['src']}'></script>\n";
} else {
echo "<script type=\"text/javascript\" src=\"min/?f={$file['src']}&".$RI_CJLoader->get('minify_time')."\"></script>\n";
}
}
Thanks for all your help
J