Tagged: 4.5
Hi guys,
I still can’t get anything to animate on https://www.curlyhost.com/ – I’ve tried doing a hard start, clearing my cache, disabling my plugins, manually updating the avia.js file and it doesn’t seem to work still.
I can go back to the previous version of WordPress but I’m keeping it broken so you can take a look at it.
Hey Andrea,
Please try adding the following to functions.php:
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');
Regards,
Rikard
Hello,
Thank you Rikard, it fixed the issue for me.
Regards
Vincent
Hey!
Glad it worked for you! We have put together some useful info about enfold theme please feel free to check it out here – http://kriesi.at/documentation/enfold/
Thank you for using Enfold.
Regards,
Vinay
Works great now – thank you!