• Resolved Maxdo

    (@dceranic)


    Hello

    I am using free WP Job Manager

    There are pages as Publish a post with shortcut

    On this page, fields but when I submit there is no value selected for example Experience, Job qualification in those dropdown field optional

    When submitting an error as one or more fields are empty although optionals.

    So there do I correct this

    Where to modify the form, what plugin, how ?

    Please. Urgent purpose. Thanks for help

    The page I need help with: [log in to see the link]

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter Maxdo

    (@dceranic)

    This is also indicated that an admin can create the fields values prior to submission.

    Where ? I see no where to access the form our modify fields.

    Thread Starter Maxdo

    (@dceranic)

    When submitting I get for example “Job Experience est invalide”.

    This field optional is set as blank and even entering value. This doesn’t work

    Thread Starter Maxdo

    (@dceranic)

    The error still occurs. Fields are optional but when clicking Preview to submit there remains this king of error. Field is invalid.

    Could someone having facing this issue can help me ?

    Thread Starter Maxdo

    (@dceranic)

    Cena (a11n)

    May you help me?

    • This reply was modified 1 year, 3 months ago by Maxdo.
    Thread Starter Maxdo

    (@dceranic)

    I am using JobHunt Theme.

    When importing demo data, this theme added custom fields to WP Job Manager such as Gender Career Level… Those field appear on the submit job form of WP Job Manager and are not take in consideration in the php code occurring an error when submitting. Those fields do not exists in the php code. Displayed then, optional and leading to invalid field. How can I correct. I try add filter in the child theme to remove those fields with no success

    add_filter( ‘submit_job_form_fields’, ‘mon_hook_retirer_champs’, 9999 );
    function mon_hook_retirer_champs( $fields ) {
    if ( isset( $fields[‘job’][‘job_experience’] ) ) {
    unset( $fields[‘job’][‘job_experience’] );
    }
    if ( isset( $fields[‘job’][‘job_career_level’] ) ) {
    unset( $fields[‘job’][‘job_career_level’] );
    }
    if ( isset( $fields[‘job’][‘job_gender’] ) ) {
    unset( $fields[‘job’][‘job_gender’] );
    }
    if ( isset( $fields[‘job’][‘job_industry’] ) ) {
    unset( $fields[‘job’][‘job_industry’] );
    }
    if ( isset( $fields[‘job’][‘job_qualification’] ) ) {
    unset( $fields[‘job’][‘job_qualification’] );
    }
    // etc.
    return $fields;
    }

    Plugin Support Jay

    (@bluejay77)

    Hi @dceranic,

    This level of customization via 3rd party theme is outside the scope of our support.

    I recommend reaching out to developers of Job Hunt and consult their documentation.

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

The topic ‘Post a job – WP JOB MANAGER’ is closed to new replies.