How to Add Merchant in User Manager User Roles and Groups

Copy and paste the code in functions.php of your current theme.

1
2
3
4
5
function wpcumanage_add_registered_roles($roles){
    $roles[] = 'wpcargo_merchant';
    return $roles;
}
add_filter( 'wpcumanage_registered_roles', 'wpcumanage_add_registered_roles' );