Hi,

This isn't a bug, I don't think.

I had to try and get views_slideshow to work to replace the flash in the template used on http://blockbuilt.com.au/cms/. But I couldn't get it to work.

Because it's using YUI for the menus I guessed it was causing conflicts.

After much searching I found jQuery.noConflict(); and added it to the template and hey presto. The menus aren't working with the fancy dropdowns but I don't really care.

I thought I'd share this in case someone else runs into the same problem and in case it can somehow be incorporated into the module though I'm sure it's the fault of the tempate.

Cheers

Ben

Comments

chrisck’s picture

Hi Ben,

Could you perhaps take me through how you used the jQuery.noConflict(); with views_slideshow?

Cheers,

Chris

redndahead’s picture

Status: Active » Fixed

Marking as fixed.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

9802008’s picture

With reference to #1, (getting Jquery/views_slideshow and YUI working together):

- edit page.tpl.php
- after print $scripts paste:

<script src="/misc/jquery.js" type="text/javascript"></script>
	<script type='text/javascript'> 
     jQuery.noConflict(); 
    </script> 

Worked for me.