• Hello, I am currently working on a buddypress site for a future community. I would like to be able to set up media libraries by users so each person will only see/edit/add their own files and not mess with what’s already there uploaded by me.
    Is there a way around this? Is the maybe a media library manager that allows me to set up separate folders for each user? Thanks in advance.

Viewing 1 replies (of 1 total)
  • Thread Starter yoolee

    (@yoolee)

    I like wp forum, I always seem to find a solution to my question:) I will now try putting this in the theme’s function.php file

    //Remove Media Library Tab
    function remove_medialibrary_tab($tabs) {
    if ( !current_user_can( ‘administrator’ ) ) {
    unset($tabs[‘library’]);
    return $tabs;
    }
    else
    {
    return $tabs;
    }
    }
    add_filter(‘media_upload_tabs’,’remove_medialibrary_tab’);

Viewing 1 replies (of 1 total)
  • The topic ‘Separate Media Libraries for Multi User Site’ is closed to new replies.