Here’s how to change the role of the registered user in WPCargo Front-end Manager Dashboard registration form.
function custom_registration_roles_callback( $role ) {
$role = 'contributor'; // use the role slug
return $role;
}
add_filter('wpcfe_register_role', 'custom_registration_roles_callback', 1);