• Hi,
    I use the wp job manager module to publish jobs

    I do not want the candidate_name to be taken over automatically.

    I tried to change meta ky, but it doesn’t work.

    How can I make my Disable auto filling candidate_name?

    Thank

    I used this code but it doesn’t work

    add_filter('submit_job_form_fields_get_user_data', 'remove_job_form_fields_user_company_data');
    
    function remove_job_form_fields_user_company_data( $fields ) {
        $fields['candidate']['candidate_name']['value'] = null;
        $fields['company']['company_name']['value'] = null;
        $fields['company']['company_website']['value'] = null;
        $fields['company']['company_tagline']['value'] = null;
        $fields['company']['company_twitter']['value'] = null;
        $fields['company']['company_video']['value'] = null;
        return $fields;
    }
Viewing 1 replies (of 1 total)
  • Plugin Author Shea Bunge

    (@bungeshea)

    Apologies, but I do not know enough about wp job manager to answer this question. I recommend asking it in a forum specific to that plugin.

Viewing 1 replies (of 1 total)
  • The topic ‘Disable auto filling candidate_name WP Job Manager’ is closed to new replies.