We don’t support the functionality to hide the job application form from WP Job Openings Settings. But, you can remove it completely if you follow the below steps:
1. Open your child theme functions.php file(We don’t recommend using your main theme file. Because, when theme gets updated, entire customization will be lost).
2. Add this code to functions.php file:
function wjo_remove_form_hooks() {
if( class_exists('AWSM_Job_Openings_Form') ) {
remove_action( 'awsm_application_form_init', array( AWSM_Job_Openings_Form::init(), 'application_form' ) );
remove_action( 'before_awsm_job_details', array( AWSM_Job_Openings_Form::init(), 'insert_application' ) );
remove_action( 'wp_ajax_awsm_applicant_form_submission', array( AWSM_Job_Openings_Form::init(), 'ajax_handle' ) );
remove_action( 'wp_ajax_nopriv_awsm_applicant_form_submission', array( AWSM_Job_Openings_Form::init(), 'ajax_handle' ) );
}
}
add_action( 'wp_loaded', 'wjo_remove_form_hooks', 99 );