Since The Author gave up on this good plugin,
I offer a solution:
edit file \lib\ManualImageCrop.php
find this
$content .= '<a id="micCropFeatureImage" class="thickbox mic-link" rel="crop" title="' . __('Manual Image Crop','microp') . '" href="' . admin_url( 'admin-ajax.php' ) . '?action=mic_editor_window&postId=' . get_post_thumbnail_id($post) . '">' . __('Crop featured image','microp') . '</a>
and replace it with this:
$thumb=get_post_thumbnail_id($post);
if (empty($thumb)) $thumb=$_POST['thumbnail_id'];
$content .= '<a id="micCropFeatureImage" class="thickbox mic-link" rel="crop" title="' . __('Manual Image Crop','microp') . '" href="' . admin_url( 'admin-ajax.php' ) . '?action=mic_editor_window&postId=' . $thumb . '">' . __('Crop featured image','microp') . '</a>
It should work with all versions of the WP, including 4.6.1, but not sure if it will work with all future versions.
-
This reply was modified 8 years, 1 month ago by aleks12.