NooTheme Premium WordPress Theme › Forums › JobMonster › Amend fields & data in "apply for this job" form
- This topic has 5 replies, 2 voices, and was last updated 4 years, 11 months ago by Inforce.
-
AuthorPosts
-
5 years ago #1081584
Where can I amend the following in the „apply for this job“ form http://wp.nootheme.com/jobmonster/jobs/product-manager-2/ on single job profiles. In this form we would like to amend the following:
1. Wording for field names. In the backend => jobmonster => customized fields here we can only amend 3 customized fileds - but if we try to add customised fields like „candidate_email“ it does not work.
2. Changing the order of the fields.
3. We have added another „upload“ field, but we would like to change the order of the upload fields. „upload cv“ should come first and then other upload fields should follow. At the moment it´s the other way aroung: first appear the additionally added upload fields and than the upload cv field.
4. Where can I change the wording of the upload requirements: „Max.: 128 MB.“ - I have changed the max upload size in our php.ini but it does still not change.
5. Where can I define which files are alowed and how can I change the the information of allowed document files: „Allowed file: .doc, .docx, .pdf“Many thanks
Nadine
Attachments:
You must be logged in to view attached files.5 years ago #1081586Note: we have added customized fields here: jobmonster => customized fields and saw the fields online. but for some reason they just disappear again after a couple of minutes and I can not see them in the backend anymore.
5 years ago #1081600Hi,
1, With application form popup: The following fields are the default: candidate_name, candidate_email,application_attachment, resume
2,3 If you want to customize the position, you can use child theme and customize the file form.php (wp-content/themes/noo-jobmonster/layouts/job/apply/)
4, By default, Jobmonster inherits the maximum file upload filesize from WordPress.
If you want to specify a maximum filesize, the following code will set the limit to 1mb for non-admins.
function noo_limit_upload_size_limit_for_non_admin( $limit ) {
if ( ! current_user_can( 'manage_options' ) ) {
$limit = 1000000; // 1mb in bytes
}
return $limit;
}
add_filter( 'upload_size_limit', 'noo_limit_upload_size_limit_for_non_admin' );
function noo_apply_wp_handle_upload_prefilter( $file ) {
if ( ! current_user_can( 'manage_options' ) ) {
$limit = 1000000; // 1mb in bytes
if ( $file['size'] > $limit ) {
$file['error'] = __( 'Maximum filesize is 1mb', 'noo' );
}
}
return $file;
}
add_filter( 'wp_handle_upload_prefilter', 'noo_apply_wp_handle_upload_prefilter' );
5, You go to Jobmonster ->Settings -> Resume tab
6,
we have added customized fields here: jobmonster => customized fields and saw the fields online. but for some reason they just disappear again after a couple of minutes and I can not see them in the backend anymore.
You can check again.
4 years, 12 months ago #1081825Hi,
here is my feedback:
1. I wanted to know: where can I amend the description like "Name" or "Message" of these fields? Instead of "Name" we would like to write e.g. "Vorname, Name". Where can I amend the field description/name? btw in our backend I only see 3 fields by default (please see screenshot)
5. In the resume alert tab I don´t find any possilibity to change the the information of allowed document files: „Allowed file: .doc, .docx, .pdf“
6. It does still not work. Once I amend the field name, the added fields just disappear again.
It would be great, if you could get back to us.
many thanks
Nadine
Attachments:
You must be logged in to view attached files.4 years, 12 months ago #1081847Hi,
1, You can use plugin Loco Translate and translate for it.
5, You go to Jobmonster -> Settings -> Resume -> Allowed Upload File Types -> http://prntscr.com/q3mlgq
6, Can you describe more clearly the steps you took and the error occurred?
Best regards,
tb.
4 years, 11 months ago #1081963many thanks, found it and could solve all issues
-
AuthorPosts
You must be logged in and have valid license to reply to this topic.