I got it working this morning (probably about the time of prev post) by systematically turning on/off all js scripts. My enqueue_the_scripts()
function is pretty much this:
wp_enqueue_script('script1','path/to/file',array('jquery'));
wp_enqueue_script('script2','path/to/file',array('jquery'));
...
wp_enqueue_script('scriptN','path/to/file',array('jquery'))
and the lightbox came alive when I commented out the enqueue for the theme’s easing script! Coincidentally, I guess I wasn’t using it anyway.
@dancoulter
Thanks a lot. You’re right, I don’t need that call anywhere except the home page. I’ll fix that, too. Can’t find it now, but after reading another one of your posts here, [99% of the time its another js breaking lightbox] I was able to narrow it down. Thanks again for such an awesome plugin!