• Resolved ilwoody

    (@ilwoody)


    hello, I know the via the resume setting you can set the user role after the resume form is submitted. I would like to add another role. How can I accomplish that?

Viewing 2 replies - 1 through 2 (of 2 total)
  • function custom_jobify_registration_role_candidate() {
      return 'looking for a job';
    }
    add_filter( 'jobify_registration_role_candidate', 'custom_jobify_registration_role_candidate' );
    
    function custom_jobify_registration_role_employer() {
      return 'posting a job';
    }
    add_filter( 'jobify_registration_role_employer', 'custom_jobify_registration_role_employer' );

    edit your functions.php file and add custon roles……
    Sean

    Plugin Contributor jonryan

    (@jonryan)

    @ilwoody if you have more questions start a new thread I’m marking this as resolved.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Apply two user roles at resume’ is closed to new replies.