• Resolved hwsiew

    (@hwsiew)


    Hi, is there a way vendor can delete uploaded media from wp backend? I tried bulk delete but it doesnt work.

    thanks

    • This topic was modified 6 years, 6 months ago by hwsiew.
Viewing 1 replies (of 1 total)
  • @hwsiew, in order to let the vendor delete the media from backend, add this following code to the function.php of the current active theme :

    add_action( 'admin_init', function() {
        $vendor = get_role( 'dc_vendor' );
    
        if ( ! $vendor->has_cap( 'delete_posts' ) ) {
            $vendor->add_cap( 'delete_posts' );
        }
    });
Viewing 1 replies (of 1 total)
  • The topic ‘Can Vendor Delete Uploaded Media?’ is closed to new replies.