Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author WPTrashPanda

    (@jprescher)

    You may be experiencing the jQuery Issue that many others are after the 4.5 update. Try adding this to your functions.php file.

    <?php
    if (!is_admin()) add_action("wp_enqueue_scripts", "my_jquery_enqueue", 11);
    function my_jquery_enqueue() {
    wp_deregister_script('jquery');
    wp_register_script('jquery', "http" . ($_SERVER['SERVER_PORT'] == 443 ? "s" : "") .
    "://ajax.googleapis.com/ajax/libs/...", false, null);
    wp_enqueue_script('jquery');
    }
    ?>

    Hi Jason:

    Great plugin. I’m wondering if the issue I’m having is similar to the JQuery issue you note.

    I’m 100% functional except for the following:
    When Facebook Events Importer is active, some Jquery based interface elements inside the Advanced Custom Fields (ACF) plugin are no longer working. It relates to repeater fiends in the ACF settings for custom fields page locations.

    I can send screen shots to show you. Happy to donate for help.

    I’m not sure when this occurred. I’m not actively editing Advanced Custom Fields very often.

    Plugin Author WPTrashPanda

    (@jprescher)

    I actually know what you’re talking about. This is a known bug. And have been meaning to fix it. You’re a rare one that uses ACF which is a great plugin. Once I solve it I will release an update so look out for that.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘After WP 4.5 All Gone’ is closed to new replies.