Change WordPress user roles and capabilities Forums Bug Reports None administrator users unable to access media library Reply To: None administrator users unable to access media library

#1992
Biranit Goren
Participant

Update:

By adding the following code to functions.php, I am now able to allow users access to the media library:

function rgb_show_attachments_full_list($show_full_list) {
    return true;
}
add_filter('ure_attachments_show_full_list', 'rgb_show_attachments_full_list', 10, 1);

However, users cannot USE images from the media library in their posts — they are only limited to seeing the images.

Can you help please?

Thanks,

Bira