Change WordPress user roles and capabilities › Forums › How to or FAQ › Shared Media-Uploads › Reply To: Shared Media-Uploads
30/06/2015 at 06:02
#1565
Vladimir
Keymaster
I added special filter to the development version 4.19.b17. Try it. Add this code to the active theme functions.php to set this filter:
add_filter('ure_attachments_show_full_list', 'show_attachments_full_list', 10, 1);
function show_attachments_full_list($show_full_list) {
return true;
}
It allows to show full Media Library items list for the restricted users.