Change WordPress user roles and capabilities › Forums › Restrict or Permit access inside WordPress – how to › Capability to access full media library not showing for user › Reply To: Capability to access full media library not showing for user
15/10/2015 at 15:41
#1750
oopgo
Participant
Hi,
I gave permission to “staff” role for accessing and managing full media library and The add capability like ‘upload_files’ and ‘unfiltered_upload’ for “Staff” role But User can not access “Full Media Library”. It can only upload media but not show the list of media items.
I did also add below function to our theme function file but it not working.
add_filter('ure_attachments_show_full_list', 'show_attachments_full_list', 10, 1);
function show_attachments_full_list($show_full_list) {
return true;
}
How can I fix this please ?