Hi Ivonne, thanks for trying Meteor Slides!
There isn’t currently an option in the plugin to disable the slideshow from pausing.
But, you can easily make this change in the plugin. Open up this file in your favorite text editor: meteor-slides/js/slideshow.js
In that file, you’ll see a chunk of code that looks like this:
$j(document).ready(function() {
$j('.meteor-slides').cycle({
fx: $slidetransition,
speed: $slidespeed,
timeout: $slidetimeout,
pause: '1'
});
});
Simply switch pause
from true to false on line 16 like this to disable it:
$j(document).ready(function() {
$j('.meteor-slides').cycle({
fx: $slidetransition,
speed: $slidespeed,
timeout: $slidetimeout,
pause: '0'
});
});
But that’s not a great solution since it will be erased when you update the plugin so I’ll make sure to add this as an option in the next version so that you won’t have to edit the plugin again.