Hi Jon – thanks for the reply!
1 – I inserted [‘job’] as you said:
add_filter( ‘job_manager_job_listing_data_fields’, ‘custom_job_manager_job_listing_data_fields’ );
function custom_job_manager_job_listing_data_fields( $fields ){
$fields[‘job’][‘company_name’][‘required’] = “false”;
return $fields;
}
But I’m still getting the same pop tooltip with yellow ! box that says please fill out this field.
2 – Thank you for the insight on this. I will look into how to implement this!