Skip to content

Instantly share code, notes, and snippets.

@FernandoSalinas33
Created October 31, 2017 14:51
Show Gist options
  • Save FernandoSalinas33/9eabf2060356c2ddb1a585608b064dab to your computer and use it in GitHub Desktop.
Save FernandoSalinas33/9eabf2060356c2ddb1a585608b064dab to your computer and use it in GitHub Desktop.
Make Experience field Optional
// Add your own function to filter the fields
add_filter( 'submit_resume_form_fields', 'custom_submit_resume_form_fields' );
// This is your function which takes the fields, modifies them, and returns them
function custom_submit_resume_form_fields( $fields ) {
// Here we target Candidate Experience and make it Optional.
$fields['resume_fields']['candidate_experience']['required'] = false;
// And return the modified fields
return $fields;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment