Forum Replies Created
-
AuthorPosts
-
Hi,
Please read my answer above.
The cause of the problem is that you have overwritten Jobmonster's core file (eg: noo_member.php).
I don't know why you overwrite the files in the framework directory.
Because we will have updates for these files, and it has not been updated on your override.
(If you activate Parent Theme, this function will normal works)
--> You need to update the latest file for the files you have overwritten.
Best regards,
tb.
Hi,
You can do this.
Employer users will have to purchase the package if they want to post a job on your website.
Please send me a link for the above issue.
5 years, 7 months ago in reply to: How to create a new page with "Noo Register User" shortcode? #1083519Hi,
The simplest way is to use plugin Loco Translate and update these text.
Or
If you use Child Theme, you can customize these files:
Hi,
You can use this code:
.single-noo_job .noo-page-heading .logo-company,.single-noo_job .noo-page-heading .company-title {
display: none;
}
Hi,
The issue has been solved.
Please reload your site and check again.
Best regards,
tb.
Hi,
Sorry, Jobmonster does not currently have the check function you mentioned above.
You can use this option to force users to upload or not:
5 years, 7 months ago in reply to: How to create a new page with "Noo Register User" shortcode? #1083496Hi,
There is currently no shortcode Register / Login with the form.
Currently there is only shortcode "Register User" with custom link.
You can get the Login / Register link by right-clicking the button and opening a new tab.
----------------------------------------------------------------------------
You can use these lines to change the text color for Register button.
.navbar-nav li .member-register-link {
color: red;
}
5 years, 7 months ago in reply to: how to make employer can't email to employee at all time but only use the chat #1083493Hi,
You can activate Child Theme and customize the file (/wp-content/themes/noo-jobmonster/layouts/dashboard/manage-application.php)
Hi,
You need to install plugin "Noo Indeed Integration". It was included in the package. You can unzip the downloaded package from Themeforest and look in the Plugin folder.
Best regtards,
tb.
Hi,
You can set "Apply Job" -> Candidate
Only Candidate users can apply for jobs, if the user is not logged, it will appear a Login button.
Hi,
The file size is currently based on the upload size installed on your site.
You can Customize the file size of upload for non-adminstrator users, by activating Child Theme and adding this functionality to the Child Theme functions.php file.
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' );
Best regards,
tb.
This reply has been marked as private.Hi,
You can use this CSS code:
#company-desc .company-header .company-featured,#company-desc .company-header .company-title{
display: none;
}
Best regards,
tb.
Hi,
We will have an update on this. You can wait for the next few days.
Best regards,
tb.
Hi,
Please send me a screenshot to clarify
Hi,
You can turn on/off and save for each option again.
Hi,
The package here is for Posting Resume only.
- With this option:
Only users who purchase the Posting Resume package can apply Job.
I don't understand what you mean, you can describe it more clearly.
Hi,
Your events have no time period.
In order for events to function properly after importing them, events need a specific time period.
Hi,
1, You can update this style for top bar:
@media (max-width: 991px){
.noo-topbar {
height: auto;
}
}
2, You need to update map info: http://prntscr.com/qow4df
3, Yes, there is currently no option to add custom fields to the registration form.
Depending on your intended use, you may create one or more menus you want.
5 years, 7 months ago in reply to: Add new Job Type Parent and Sub Category frontend display Issue #1083424As you can see, the Location field is already hierarchical, if you want to use multiple selections: you go to Jobmonster -> Custom Field -> Job tab -> set "Multiple Location" instead of Single
-
AuthorPosts