Dear mowill,
you can fix this problem.
You must go to you templates functions and in file function.php – them funfctions add this fix:
function modify_jquery_version() {
if (!is_admin()) {
wp_deregister_script('jquery');
wp_register_script('jquery',
'https://ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js', false, '2.0.s');
wp_enqueue_script('jquery');
}
}
add_action('init', 'modify_jquery_version');