I am using zpArdoise and have colorbox enabled on album page.
When I click on a image and colorbox opens, the slideshow starts by default and at the bottom of the window there is a link to STOP SLIDESHOW.
How do default colorbox not to start the slideshow automatically?
Comments
Look at the slideshow.php of the plugin around lines 580-595 and add `slideshowAuto: false,` to the JS configuration.
Change: slideshowAuto: !0,
To: slideshowAuto: !1,
Colorbox will now display with slideshow off unless started by user.
If you have a problem viewing the JavaScript use JavaScript beautifier to reformat. Makes the code much easier to examine.
http://www.javascriptbeautifier.com/
Many more settings available at: http://www.jacklmoore.com/colorbox/
thanks for the instructions