
Originally Posted by
kamelion0927
Okay - I finally figured out what I was doing wrong and I didn't see this posted any where else so I thought I'd post it here just in case it's needed.
When you install the css/javascript loader, you need to specify that the javascript for easySlider needs to be loaded before everything is minified.
To do this, change the loader_sample.php.sample in includes/templates/your_template/auto loaders to loader_yournamehere.php (I used loader_index.php) and then change the php content in the file to something like:
<?php
$loaders[] = array('conditions' => array('pages' => array('index_home')),
'jscript_files' => array(
'jscript_easySlider.js' => 10,
'jquery/jquery-1.4.2.min.js' => 20
));
upload to includes/templates/your_template/auto_loaders and easySlider should work.