Created
December 1, 2017 09:51
-
-
Save madeincosmos/d253d02de4a0afcb986bd680db0be511 to your computer and use it in GitHub Desktop.
Automatically approve registered vendors
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function automaticallyApproveRegisteredVendors ( $vendorData ) { | |
$vendorData['role'] = 'wc_product_vendors_admin_vendor'; | |
return $vendorData; | |
} | |
add_filter( 'wcpv_registration_default_user_data', 'automaticallyApproveRegisteredVendors', 10, 1); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks a lot!