Viewing 4 replies - 1 through 4 (of 4 total)
  • Does native WP image editor work on your installation?

    Thread Starter articalab

    (@articalab)

    Yes, it does.
    Thanks

    Getting a similar warning – maybe the same? Complains about undefined index “size” on line 39 of ManualImageCropEditorWindow.php. Currently, that line is assuming that $_GET[‘size’] is set, but at least in my case it’s not (clicked on “crop image” link in “set featured image” meta box.

    Changing that line to:

    $editedSize = (isset($_GET[‘size’]) && in_array($_GET[‘size’], $imageSizes)) ? $_GET[‘size’] : null;

    seems to fix the issue though.

    BTW – I’m using v1.12 of the mic plugin and WP 4.3

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Notice message and crop not working’ is closed to new replies.