Overriding lightbox2 options in a template
Design and Skin Customization
The flow:
* jrCore registers the file lightbox-2.7.1.min.js for inclusion
* That file has been changed from the original to include a wrapper
if($("#lightbox").length == 0) {
// the lightbox code ....
}
That's a point that could be tweaked. add a div #lightbox FIRST so that this code never fires, then put your own lightbox code in place.
--
Seams like the issue is lightbox.options is not defined. when I try to run lightbox.options from the console, its not there.
Might be that it is there, but on a different variable name.
Might be that it was defined inside a function so is not available in the global namespace.
Trying to find a way to access it now.