Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Martin Tod

    (@mpntod)

    Hard to say without seeing the page.

    The normal problem in these circumstances is that something is installing jQuery or jQuery Cycle for a second time.

    Soliloquy Lite Slider Plugin (unlike most problematic plugins) seems to be installing jQuery properly and doesn’t appear to use jQuery Cycle – so the problem might be with the CarouFredsel installation. Does it work properly with Rotating Tweets if you disable the CarouFredsel script?

    Are you using wp_enqueue_script(); to install CarouFredSel?

    If it is hard-coded, what happens if you change:

    <script type="text/javascript" src="jquery.js"></script>
    <script type="text/javascript" src="jquery.carouFredSel.js"></script>

    to

    <script type="text/javascript" src="jquery.carouFredSel.js"></script>

    Thread Starter trishahdee

    (@trishahdee)

    Thank you for the quick reply. Here is the homepage of the development site: http://cakeitupcakestands.com/site/

    When I disabled the the following functions that call the CarouFredSel then both Soliloquy and your plugin work. jQuery is a weakness for me… can you see anything wrong with the way I’m calling these?

    /* Homepage Featured Product Carousel */
    function my_scripts_method() {
      wp_enqueue_script('jquery.carouFredSel-6.1.0-packed', get_stylesheet_directory_uri() .'/jquery.carouFredSel-6.1.0-packed.js', array('jquery'));
      wp_enqueue_script('jquery-1.8.2.min', get_stylesheet_directory_uri() .'/jquery-1.8.2.min.js', array('jquery'));
    }
    add_action('wp_enqueue_scripts', 'my_scripts_method');
    Thread Starter trishahdee

    (@trishahdee)

    Nevermind… my bad 🙁 I didn’t need to call jquery-1.8.2.min !! All are working now 🙂

    Plugin Author Martin Tod

    (@mpntod)

    You beat me to it! WordPress has jQuery built in. It’s generally best to call the default version as you have in the first line. 🙂

    Thread Starter trishahdee

    (@trishahdee)

    Sometimes I get so engrossed with the details I can’t see the obvious. Thanks again.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Conflicts with Slider and Carousel’ is closed to new replies.