Hi, I have managed to remove location and region from submission field but I can’t manage to remove phone, hours and company video. Here’s the code I am using
add_filter( 'submit_job_form_fields', 'custom_submit_job_form_fields', 'job_manager_job_listing_data_fields');
function custom_submit_job_form_fields( $fields ) {
$fields['job']['job_title']['label'] = "Template Name";
$fields['job']['application']['label'] = "Your Email";
unset( $fields['job']['job_hours']);
unset( $fields['job']['company_video']);
unset( $fields['job']['phone']);
unset( $fields['job']['job_location']);
unset( $fields['job']['job_region']);
return $fields;