Hi Omilas,
In item_detail.php (of jobs_attributes)
Line 72:
Find the code below:
<?php if(osc_get_preference('allow_cv_upload', 'plugin')=='1' && ((osc_get_preference('allow_cv_unreg', 'jobs_plugin')=='1' && !osc_is_web_user_logged_in()) || osc_is_web_user_logged_in())) { ?>
Replace it by
<?php if(osc_get_preference('allow_cv_upload', 'jobs_plugin')=='1' && ((osc_get_preference('allow_cv_unreg', 'jobs_plugin')=='1' && !osc_is_web_user_logged_in()) || osc_is_web_user_logged_in())) { ?>
---------------------------------
Line 89:
Find the code below:
echo osc_route_ajax_url('jobs-attr-cvupload', array('id' => osc_item_id()));
Replace it by
echo osc_route_ajax_url('jobs-attr-cv-upload', array('id' => osc_item_id()));
Check if it works..
Thank you