Quote Originally Posted by frank18 View Post
Just had another play with this and (for the time being) got it all working to satisfaction.

It will need further testing though - so I might direct the developers of Zen Lightbox to this post for consideration.

I downloaded https://ajax.googleapis.com/ajax/lib.../jquery.min.js and saved the code as includes/templates/westminster_new/jscript/jquery-1.10.2.min.js

Then changed line 12 in /includes/classes/zen_lightbox/slimbox.php

from this

PHP Code:
echo '<script type="text/javascript" src="' $template->get_template_dir('.js'DIR_WS_TEMPLATE$current_page_base'jscript') . '/jquery-1.4.4.min.js"></script>'
to this

PHP Code:
echo '<script type="text/javascript" src="' $template->get_template_dir('.js'DIR_WS_TEMPLATE$current_page_base'jscript') . '/jquery-1.10.2.min.js"></script>'
There seem to be no further errors after this change - but, as I said previously, it will need more testing.

Hope this helps.

Cheers / Frank
Since the jquery library version 1.10.2 is already being called in the template, there is no need to call it twice. You should just remove the call to it in the slimbox.php. See includes/templates/westminster_new/jscript/jscript_jquery.min.php

Thanks,

Anne