You can control which field we pull from Bullhorn to use as the Job title with this code
/**
* Matador job Title to use customtext1
*/
add_filter( 'matador_import_job_title_field', function ( $field ) {
return 'customText1';
} ); you may
/**
* Matador job Title check is array and flatten if so
*/
add_filter( 'matador_import_job_title', function ( $title ) {
if( is_array( $title ) ) {
return $title[0];
}
return $title;
} );