Ok, thank you. – I solved the problem by doing the update via ftp.
OK, works now after updating.
Thank You.
Ok, in english:
the site http://www.bergmann-lappe.de has problems with the google maps Widget.
After updating wordpress 4.5 I had some Problems with Sliders and [all] that.
Then I added
function modify_jquery() {
if (!is_admin()) {
wp_deregister_script('jquery');
wp_register_script('jquery', 'https://code.jquery.com/jquery-1.11.3.min.js');
wp_enqueue_script('jquery');
}
}
add_action('init', 'modify_jquery');
to the functions.php and all was fine.
Except the google maps Widget.
What I can do?