If anyone want to allow any extra file type in the upload section of this Application manager addon, it can be possible easily with this simple filter.
if( ! function_exists('new_file_upload_extensions') ) { function new_file_upload_extensions($extensions) { $extensions .= ',jpeg,jpg'; return $extensions; } } add_filter('job_bm_filter_file_upload_extensions', 'new_file_upload_extensions', 10, 1);