And yet another jQuery conflict... :smile:
First of all, you have tons of jQuery loading on your site - get that fixed. You're loading:
- jQuery 1.7.1
- jQuery 1.4.2
- jQuery 1.7.1
- jQuery 1.9.1
The best part is that one kills the other so in the end, browser uses only 1.9.1 and the first 3 are loaded for nothing...
Go to your includes/templates/e-ssentials/jscript and delete the following files:
jscript_1.7.1_jquery.js
jscript_jquery-1.4.2.min.js
jscript_jquery-1.7.1.min.js
Next, delete
jscript_easySlider.js
from the same directory because it's not being used. I believe you can delete jscript_jquery.cycle.all.min.js as well, but I'm not sure if it's being used somewhere else on your site...
Next, check inside includes/modules/pages/index/ and see if you have any .js files that would be loading anything related to slides and delete that.
And finally, you'll need to locate this piece of code:
<script type="text/javascript">
$(document).ready(function(){
$("#slider").easySlider({
auto: true,
continuous: true,
numeric: true,
firstShow : true,
lastShow : true,
controlsShow: true,
speed: 800,
pause: 4000
});
});
</script>
<div id="slider">
<ul>
</ul>
</div>
somewhere in your site (perhaps includes/templates/e-ssentials/common/tpl_header.php) and delete that code.
Once you remove all that conflicting code, ZX Slideshow will work.
Regards,
Leonard