• Resolved ldaly

    (@ldaly)


    This plugin is exactly what I needed! Question – on the apply for job form – how can I change what fields are required? I’d like to make phone and upload resume optional. I’d also like to change “cover letter” to “message” and make it optional.

    Thank you!
    Laurie

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

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Anantajit JG

    (@anantajitjg)

    Hi,

    We will soon release an add-on that will have the capability to manage application form. Using that you can customize/delete existing fields and you can also add new form fields.

    Thread Starter ldaly

    (@ldaly)

    Thank you for your reply, I noticed this same response from 2 months ago. Do you know when this release may be coming?

    Thank you.

    Hi.
    Congratulations on the plugin!
    Did you want to ask if there has been progress on the add-on to modify the form?
    Thank you!

    Hi,

    Goto Plugins > Editor and select “WP Job Openings”

    select the file:
    wp-job-openings/inc/class-awsm-job-openings-form.php

    search for “$default_form_fields”

                'awsm_applicant_letter' => array(
                    'label'        => __( 'Cover Letter', 'wp-job-openings' ),
                    'field_type'   => array(
                        'tag'  => 'textarea'
                    ),
                    'id'           => 'awsm-cover-letter',
                    'class'        => array( 'awsm-job-form-control' )
                ), 

    change to this:

                'awsm_applicant_letter' => array(
                    'label'        => __( 'Message', 'wp-job-openings' ),
                    'field_type'   => array(
                        'tag'  => 'textarea'
                    ),
                    'id'           => 'awsm-cover-letter',
                    'class'        => array( 'awsm-job-form-control' ),
    		'required'     => false
                ), 

    In label change “Cover Letter” to “Message” and in the last line you can add the required optional parameter to false, do not forget to add a comma in the end of the “class” line.

    For phone and upload, you only need add the last change, comma in the end of the “class” line and add:

    'required' => false

    Regards,

    • This reply was modified 5 years, 8 months ago by JAVOB.
    • This reply was modified 5 years, 8 months ago by JAVOB.

    Question –

    I’d like to make upload resume optional.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Make required fields on Apply for Job form optional’ is closed to new replies.