Quote Originally Posted by kamelion0927 View Post
Thanks! This is my eighth version but I think I finally have a winner thanks to your template.

I've been looking into my easySlider issue a little bit more and I found that regardless of whether the css/javascript loader is enabled, I'm getting a "jQuery is not defined: /includes/templates/alysa_rounded/jscript/jscript_easySlider.js" in the Firefox error console.

The only difference is that if the css/javascript loader is enabled, the slide show doesn't work.

Of course the loader being enabled is also causing issues with the mods that are supposed to require it be enabled, so I don't know if it really benefits my site at all.

Thanks for your help!
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.