Viewing 15 replies - 1 through 15 (of 42 total)
  • Moderator Jan Dembowski

    (@jdembowski)

    Forum Moderator and Brute Squad

    I have the Pro version and it is not working properly on the frontend after the upgrade.

    For pro version support please contact the author on their site directly.

    https://www.imagely.com/wp-login.php

    As the author is aware, their customers cannot be supported in these forums. As you are their customer I am sure they will help you there.

    Plugin Contributor photocrati

    (@photocrati)

    @xyzbytes – Yes, definitely send us a support request as @jdembowski (thanks!) suggested.

    – Cais.

    Did they ever resolve this for you?

    I am now in the same exact situation as you are/were. I received a “Please send a ticket” reply via e-mail with zero in the way of solutions.

    I now have a dead website sitting over the weekend waiting for them to return to work their banker hours on Monday. Good thing the internet only works 8 hours a day 5 days a week.

    Same issue here. Any solution?

    Thread Starter xyzbytes

    (@xyzbytes)

    The error is related to the new jquery version/file used in WP 4.5 You need to change it back to the previous version used in 4.4.2.
    Use the dev tools in Chrome. You will see the error.

    wp-includes/js/jquery

    my NextGEN Gallery is broken after upgrading to 4.5 nothing works

    Thread Starter xyzbytes

    (@xyzbytes)

    Or you could sdd this to your child theme

    // js fix for wp 4.5
    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’);

    Wish it was an option for me, but it’s not. I am with GoDaddy on a Managed WordPress hosting and once they upgrade the core files, there is no rolling back.

    Thread Starter xyzbytes

    (@xyzbytes)

    You don’t have access to the file via ftp or through their control panel? Aren’t you running a child theme? You should have access to the WP files within WP itself.

    ok @xyzbytes can I use string locator and change that line of code back to the old 4.4.2.

    What line would I edit https://parentingplus.com/ I have a kids theme its open and ready.

    @xyzbytes I added that and still had the same problem.

    Thread Starter xyzbytes

    (@xyzbytes)

    Are you using a caching plugin? If you know how to use chrome Devon tools you will see if it is using the older rev of jquery and if you are having jquery errors if there are any.

    Thread Starter xyzbytes

    (@xyzbytes)

    Make sure your browser cache is cleared as well.

    @xyzbytes I added the code you had above to my Child Theme functions.php. No change. Is that where it should be?

Viewing 15 replies - 1 through 15 (of 42 total)
  • The topic ‘Broken after updgrading to WP 4.5’ is closed to new replies.