Dear, Currently the Jobmonster not support you to disable 'Upload CV' field on Apply Job Form. We're will check and support it in next update version.
Now, you can go to file 'noo-jobmonster/layouts/job/apply/form.php' and add custom code (see attachment):
$application_attachment = apply_filters('jobmonster_application_form_allow_upload_attachment', $application_attachment);
After add custom code, please switch your site to use Jobmonster Child Theme. then add custom code in file functions.php of Jobmonster child theme.
add_filter('jobmonster_application_form_allow_upload_attachment', function($value){
if(!is_user_logged_in()){
return false;
}
return $value;
});
Best regards.
Attachments:
You must be
logged in to view attached files.