Forums
Forums / Plugin: MultiVendorX - WooCommerce Multivendor Marketplace AI Powered Solutions / Can Vendor Delete Uploaded Media?
(@hwsiew)
7 years, 9 months ago
Hi, is there a way vendor can delete uploaded media from wp backend? I tried bulk delete but it doesnt work.
thanks
(@dualcube)
@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' ); } });
The topic ‘Can Vendor Delete Uploaded Media?’ is closed to new replies.