Tagged: Wordpress 4.5
Hi!
Love the theme!
Like many others, though, I’m having issues with animations/masonry, etc. since the WordPress 4.5 update. I’ve uploaded theme 3.5.2. I also tried to load the avia.js file directly. Nothing seems to be working.
Thanks!
Nick
Hey nalakin!
We checked for the issue but it looks like the theme is not updated properly and there are still some js errors in console. If you are not using a child theme please backup any custom changes you may have added to the theme and download the enfold latest version 3.5.2 from themeforest and update the theme manually via FTP following the steps provided here http://kriesi.at/documentation/enfold/portfolio-item/update-theme-files-with-ftp/
Best regards,
Vinay
Hi Vinay —
I am using a child theme. Do I need to do something with the child theme?
Nick
Also, I did download the latest version using FTP — several times, in fact. So I’m not sure what’s not being installed correctly.
Nick
Hi!
Please add the below code to your child theme 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,
Vinay
That did it! Thank you!
Nick