Skip to content

Instantly share code, notes, and snippets.

@madeincosmos
Created December 1, 2017 09:51
Show Gist options
  • Save madeincosmos/d253d02de4a0afcb986bd680db0be511 to your computer and use it in GitHub Desktop.
Save madeincosmos/d253d02de4a0afcb986bd680db0be511 to your computer and use it in GitHub Desktop.
Automatically approve registered vendors
function automaticallyApproveRegisteredVendors ( $vendorData ) {
$vendorData['role'] = 'wc_product_vendors_admin_vendor';
return $vendorData;
}
add_filter( 'wcpv_registration_default_user_data', 'automaticallyApproveRegisteredVendors', 10, 1);
@InfinitumForm
Copy link

Thanks a lot!

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