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” then edit this:
'awsm_file' => array(
'label' => __( 'Upload CV/Resume', 'wp-job-openings' ),
'field_type' => array(
'tag' => 'input',
'type' => 'file',
'accept' => $allowed_file_types
),
'id' => 'awsm-application-file',
'class' => array( 'awsm-resume-file-control', 'awsm-job-form-control', 'awsm-form-file-control' ),
'content' => $allowed_file_content
)
to this, to hide Upload CV:
'awsm_file' => array(
'label' => __( 'Upload CV/Resume', 'wp-job-openings' ),
'field_type' => array(
'tag' => 'input',
'type' => 'file',
'accept' => $allowed_file_types
),
'id' => 'awsm-application-file',
'class' => array( 'awsm-resume-file-control', 'awsm-job-form-control', 'awsm-form-file-control' ),
'content' => $allowed_file_content,
'show_field' => false
)
to hide phone change:
'awsm_applicant_phone' => array(
'label' => __( 'Phone', 'wp-job-openings' ),
'field_type' => array(
'tag' => 'input',
'type' => 'tel'
),
'id' => 'awsm-applicant-phone',
'class' => array( 'awsm-job-form-control' ),
'error' => array(
'error_msg' => __( 'Please enter a valid phone number.', 'wp-job-openings' )
)
),
to this:
'awsm_applicant_phone' => array(
'label' => __( 'Phone', 'wp-job-openings' ),
'field_type' => array(
'tag' => 'input',
'type' => 'tel'
),
'id' => 'awsm-applicant-phone',
'class' => array( 'awsm-job-form-control' ),
'error' => array(
'error_msg' => __( 'Please enter a valid phone number.', 'wp-job-openings' )
),
'show_field' => false
),
The solution is to add the last line in each input you need to hide.
'show_field' => false