Tagged: animation, easy slider
Hey guys,
All image animation has stopped working on my site, with the exception of the Advanced Layerslider. If I choose an animation (i.e. pop up), the image is no longer visible on the site. The same is true for the Easy Slider widget. No image appears when animation is present. Any ideas?
Thanks,
Aaron
Hi Aaron,
Could you try updating to the latest version of the theme (3.5.2) to see if that helps please? http://kriesi.at/documentation/enfold/updating-your-theme-files/
Thanks,
Rikard
Hey Rikard!
I updated to the latest version, but no luck. Image animation and accordion still don’t work. Any ideas?
Thanks,
Aaron
Hi,
Please try adding the following to your functions.php file to see if it helps:
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');
Thanks,
Rikard