Yes, I should visit this page more often :).
But I’m wonder, why nobody contact me directly or via shinephp.com?
I just published version 1.1. with similar fix for “Contact Form 7” plugin. I can not release version 1.2 just after 10 minutes after version 1.1. So let’s wait a week for the official update. For that time you may replace this function at includes/class-view-own-media-posts-only.php
public function query_set_only_author($query) {
global $current_user;
// do not limit user with Administrator role
if ( current_user_can('administrator') ) {
return;
}
// do not touch anything for listed custom post types:
$do_not_touch = array(
'wpcf7_contact_form', // Contact Form 7 requests
'acf' // Advanced Custom Fields
);
$post_type = $query->get('post_type');
if (in_array( $post_type, $do_not_touch )) {
return;
}
$suppressing_filters = $query->get('suppress_filters'); // Filter suppression on?
if (!$suppressing_filters && is_admin() && current_user_can('edit_posts') && !current_user_can('edit_others_posts') ) {
$query->set('author', $current_user->ID);
add_filter('views_edit-post', array(&$this, 'fix_post_counts') );
add_filter('views_upload', array(&$this, 'fix_media_counts') );
}
}
and use ACF without problem. Thanks.