Hi there,
I've searched everywhere online and I can't find an answer for this.
What I want to do is simple: use jQuery cycle on many pages on the website... but I also use NextGen Gallery. I only really want to use the "slideUp" transition.... but this has become hell with nextgen gallery. First, the custom fields with [slideshow] don't seem to work for this. I've even gone as far as look into more plugins to extend jquery, but the one i found only uses the LITE version of cycle.
The problem is... if I load Cycle by itself in my header files... they will work... but then NextGen Breaks everywhere. No lightbox popups or anything, even the fade slideshow which worked earlier stops.
But.. I really don't want to call the cycle plugin for each page i come across that needs to use it... i should be able to just access it from jquery's built-in files ... but i have no idea how to do that.
The only thing i need to do with cycle is the following:
<script type="text/javascript">
$(document).ready(function() {
$('#slideshow').cycle({
fx: 'scrollUp',
timeout: 5000,
});
});
</script>
But i can't load it without breaking nggallery. Please help.