• After updating to 4.2.2 I am unable to edit existing Image Galleries (made from Create Gallery in the Media Library). Galleries in the edit box never display thumbnails, it just keeps loading. The image galleries do show up when I preview or publish to the site but I cannot edit on the back end.

    I’ve deactivated all plugins to see if there was a conflict but the problem still exists. My site is set to a custom theme, if that is the problem, how do I troubleshoot?

    Thanks in advance if anyone can help me!!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Maybe something went wrong while updating. So if you have a backup you can try installing it on your local host and then try to update it and see, this might help to identify if its a server issue, Maybe your server php version or upload limits might not be enough for the new WP version. Also you might be able to get an idea of the problem by checking logs on your server.

    @vixdin3773, I have had a similar issue this afternoon, also manifesting after the WP 4.2.2 upgrade.

    In my case, the custom theme was applying the theme style to admin via editor-style.css, which was importing style.css from the theme. This particular theme has a sticky footer which employs this css:

    html, body {
    	height: 100%;
    }

    and it was this css that was causing the problem in admin. I amended editor-style.css to:

    @import url( 'style.css' );
    
    html, body {
    	height: auto !important;
    }

    and all is well.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Unable to edit Image Gallery after 4.2.2 Update’ is closed to new replies.