This post is password protected, so I can’t see how the gallery looks on your site. However, I noticed that your theme or one of your plugins seems to be loading an old version of jQuery instead of using the version that comes bundled with WordPress.
It can create multiple conflicts with WordPress and with other plugins like Jetpack. You can read more about it here:
http://ww.wp.xz.cn/support/topic/troubleshooting-wordpress-35-master-list?replies=4#post-3547424
Try switching to a different theme for a few minutes, and check if that solves the issue; if it does, you’ll want to look for the function loading jQuery in your theme’s header.php file, or in the functions.php file. Once you find that function, you can remove it and enqueue the proper version of jQuery as explained here:
http://codex.ww.wp.xz.cn/Function_Reference/wp_enqueue_script
If the issue is not related to your theme, please try to disable all your plugins, one at a time, until you find the one that causes the conflict. You can then enqueue jQuery using the method I linked to above.
If you do not feel comfortable editing PHP files, you can also contact the theme or plugin author and ask them to solve the issue.
Thank you for your answer ! 🙂
Can you tell me what version of jQuery will work? I have tried to change it from 1.7 to 1.10.1 – but that did not work.
Thanks
Sas
WordPress 3.5.1 uses jQuery 1.8.3:
http://www.lolaramona.com/wp-includes/js/jquery/jquery.js?ver=1.8.3
It will use 1.10.1 as soon as 3.6 comes out:
http://core.trac.ww.wp.xz.cn/browser/trunk/wp-includes/js/jquery/jquery.js
You do not need to add any custom jQuery library though: you can use wp_enqueue_script to enqueue the version that comes bundled with WordPress, like so:
wp_enqueue_script( 'jquery' );