The lightbox pop-up works fine normally. My objective is after pop-up, it then automatically begin running as a slideshow. Researching the plugin, I see it's taking advantage of
http://colorpowered.com/colorbox/
That page shows built-in variables for colorbox for "slideshow" and "slideshowAutoplay"
I tried adding these variables to the file: /plugins/jquery-lightbox-for-native-galleries/jquery-lightbox-for-native-galleries.php in line 88, but no luck.
Here's the code:
Code:
<script type="text/javascript">
// <![CDATA[
jQuery(document).ready(function($){
$(".gallery").each(function(index, obj){
var galleryid = Math.floor(Math.random()*10000);
$(obj).find("a").colorbox({rel:galleryid, maxWidth:"95%", maxHeight:"95%", slideshow:"true", slideshowAutoplay: "true"});
});
});
// ]]>
</script>
Any suggestions would greatly appreciated!