Tagged: 

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #613491

    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

    #613497

    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

    #613518

    Hi Vinay —

    I am using a child theme. Do I need to do something with the child theme?

    Nick

    #613519

    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

    #613544

    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

    #614196

    That did it! Thank you!

    Nick

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘WordPress 4.5 Update Issue’ is closed to new replies.