WooSocial – Change User Role After Registration

WooSocial, Wordpress

To change new user’s role, registered through WooSocial, please add below code to your child theme functions.php

add_action(‘woosocial_after_register’, ‘prefix_woosocial_after_register_callback’);

function prefix_woosocial_after_register_callback($email) { $user = get_user_by(‘email’, $email); $user->set_role(‘rolename’); }

Please change rolename to the role you need.