Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FernandoSalinas33/e2103011dedf1de7ce7e5580deffa232 to your computer and use it in GitHub Desktop.
Save FernandoSalinas33/e2103011dedf1de7ce7e5580deffa232 to your computer and use it in GitHub Desktop.
Vendors Auto Approve
/**
* Plugin Name: Product Vendors, auto approve
*/
function automaticallyApproveRegisteredVendors ( $vendorData ) {
$vendorData['role'] = 'wc_product_vendors_admin_vendor';
return $vendorData;
}
add_filter( 'wcpv_registration_default_user_data',
'automaticallyApproveRegisteredVendors', 10, 1);
Copy link

ghost commented Dec 18, 2018

Great snippet. Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment