• Resolved wong0630

    (@wong0630)


    Hi All,

    I tried to remove the unnecessary fields in the job submit form. I put the following codes in the theme/functions.php

    function custom_submit_job_form_fields( $fields ) {
    	unset($fields['company']['company_twitter']);
    	unset($fields['company']['company_logo']);
    
        return $fields;
    }
    add_filter( 'submit_job_form_fields', 'custom_submit_job_form_fields' );

    It works fine. However, there are some fields I can’t find their name (field name) in the class-wp-job-manager-form-submit-job which are

    GOOGLE+ USERNAME (OPTIONAL), FACEBOOK USERNAME (OPTIONAL), LINKEDIN USERNAME (OPTIONAL)

    Do anyone know how to remove these three fields?

    Thanks,
    Jacky

    https://wordpress.org/plugins/wp-job-manager/

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Mike Jolley

    (@mikejolley)

    These ones are added by Jobify theme – look in there for the field names. You’ll also have to increase the filter priority when you find their names, e.g.:

    add_filter( 'submit_job_form_fields', 'custom_submit_job_form_fields', 99 );
    tripflex

    (@tripflex)

    You can disable those fields with the latest release of my Field Editor plugin (includes any custom fields added by filter too), get a free beta tester license while it’s available:

    https://plugins.smyl.es/wp-job-manager-field-editor/

    solhuebner

    (@solhuebner)

    @tripflex great plugin!

    Does anyone know which file in the Jobify theme must be edited to remove their additional fields?

    Have anyone found out the way to remove the additional fields of the following:

    GOOGLE+ USERNAME (OPTIONAL), FACEBOOK USERNAME (OPTIONAL), LINKEDIN USERNAME (OPTIONAL)

    I couldnt find it in the functions.php

    Search your theme and plugins directory for submit_job_form_fields and that will point you in the right direction of where those are being loaded.

    You just need to unset those values, but you first need to figure out what the actual meta key is for them in order to do so

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Custom the job submit form’ is closed to new replies.