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

    (@jamesdbruner)

    What happens if you move a different image to the top left (making it the first image in the set) does it just display that one? Also are you using the shortcode or are you using the global option or both? If you’re doing both that can cause issues.

    Plugin Author jamesdbruner

    (@jamesdbruner)

    Ok, I looked at your source code and here’s what I noticed…

    There’s this script

    <nav id="nav-arrows" class="nav-arrows"><span id="nav-arrow-prev">Previous</span><span id="nav-arrow-next">Next</span></nav><script>jQuery( '#nav-arrow-prev' ).click( function() { jQuery.vegas('previous'); });jQuery( '#nav-arrow-next' ).click( function() { jQuery.vegas('next'); });</script><script>
    jQuery( function() {
      jQuery.vegas('slideshow', {
      delay:500,
      backgrounds:[
    { src:'http://testing.mattgrossdesign.com/wordpress/wp-content/uploads/2013/08/biomedical-front-page.jpg', fade:500 },{ src:'http://testing.mattgrossdesign.com/wordpress/wp-content/uploads/2013/08/Organs-White.jpg', fade:500 },{ src:'http://testing.mattgrossdesign.com/wordpress/wp-content/uploads/2013/08/scotiaband-front-page.jpg', fade:500 },{ src:'http://testing.mattgrossdesign.com/wordpress/wp-content/uploads/2013/08/windmill-front-page.jpg', fade:500 },{ src:'http://testing.mattgrossdesign.com/wordpress/wp-content/uploads/2013/08/Zagato.jpg', fade:500 },  ]
    })('overlay', {
       src:''
    })
    });
    </script>

    Which is awesome. That’s how it should be, but farther down near your footer there’s this

    <script>
    jQuery( function() {
      jQuery.vegas('slideshow', {
      delay:500,
      backgrounds:[
    { src:'', fade:500 },  ]
    })('overlay', {
       src:''
    })
    });
    </script>

    Now I’m not sure why that’s there but I’m almost 100% positive that’s what’s causing your issue. Let me know if you need further assistance!

    Thread Starter Matt Gross

    (@mattgrossworkgmailcom)

    Thanks James! I’ll have a look at that as soon as I get back to my computer, I’ve no idea how that second chuck of script got there.

    I’ll let you know what happens.

    Matt

    Thread Starter Matt Gross

    (@mattgrossworkgmailcom)

    Okay, figured it out. The second script was being generated by the global option, while I had the shortcode embedded into the header.php file. I was wondering why the slideshow options weren’t having any effect, now we know.

    Thanks James!

    Matt

    Plugin Author jamesdbruner

    (@jamesdbruner)

    I’m glad you got it working! Have a good one Matt!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Vegas Slider Not Autoplaying’ is closed to new replies.