How to Add Merchant in User Manager User Roles and Groups
Copy and paste the code in functions.php of your current theme.
function wpcumanage_add_registered_roles($roles){ $roles[] = 'wpcargo_merchant'; return $roles; } add_filter( 'wpcumanage_registered_roles', 'wpcumanage_add_registered_roles' );