Forum Replies Created
-
AuthorPosts
-
Hi,
You can add these lines to Custom CSS:
.colophon.wigetized .container-boxed.max {
max-width: 1400px;
}
Hi,
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.
Hi,
2. Please send me a screenshot to clarify
5. You can refer this post: https://www.digitalocean.com/community/questions/blocked-by-cors-policy-the-access-control-allow-origin-mean-stack
6. You can use Child Theme and customize 2 files.
- list-comment.php (/wp-content/themes/noo-jobmonster/layouts/company/)
- noo-utilities.php(/wp-content/themes/noo-jobmonster/framework/functions/)
8. I added CSS on your site, please reload your site and check again. (remove browser cache and check)
Best regards,
tb.
5 years, 7 months ago in reply to: how can I search for skills from resume to get a talented candidae #1081844Hi,
Currently Resume Advanced search does not have the option of searching by Skill field.
The fields in the advanced search resume are further customized based on the fields created here.
Best regards,
tb
Hi,
There is currently no background color change option for member headings.
You can use CSS custom:
.jform-header{
background-color: red; /* replace red => your color*/
}
This reply has been marked as private.Hi,
You click Sync and try again.
If it is unsuccessful, please send me link your site and wp admin account.
I will help you check.
Best regards,
tb.
Hi,
You can add this line to functions.php of Child Theme:
remove_action('woocommerce_share','noo_organici_social_share_product');
Hi,
You go to the noo_member.php file (/themes/noo-jobmonster/framework/admin/) and delete 2 slashes in front of these lines.
Best regards,
tb.
5 years, 7 months ago in reply to: Add column with job owner name in Applications (Dashboard) #1081810Hi,
You can try with the following code:
function noo_jobslist_custom_posts_columns( $posts_columns ) {
$posts_columns['job_posted'] = __( 'Departamento', 'noo' );
return $posts_columns;
}
add_filter( 'manage_noo_application_posts_columns', 'noo_jobslist_custom_posts_columns' );
// Dashboard - Applications - Add data to column
function noo_joblist_custom_column_display( $column_name, $post_id ) {
$job_id = get_post_field('post_parent', $post_id);
if (is_wp_error($job_id)) {
return false;
}
$company_id = noo_get_post_meta($job_id,'_company_id');
if ( 'job_posted' == $column_name ) {
if(!empty($company_id)){
echo '' . get_the_title( $company_id ) . '';
}else{
echo '' . ( get_the_author() ) . '';
}
}
}
add_action( 'manage_noo_application_posts_custom_column', 'noo_joblist_custom_column_display', 10, 2 );
Hope it helps!.
Best regards,
tb.
Hi,
- Change background image on resume, job page:
You go to
Customizer -> Job & company -> Job List -> http://prntscr.com/q34efc
Customizer -> Resume -> Resume List -> http://prntscr.com/q34dub
- Change color/size: There is currently no option to change the color and size for each element, you can use CSS custom.
Best regards,
tb.
Hi,
I checked your site. The site layout is like site demo.
For images, the input data uses grayscale images instead of images on the demo site, for some copyright reasons.
Best regards,
tb.
Hi,
1, Jobmonster has no additional addons for Elementor Pro.
2, You can use Elementor on all pages. For content to display you need to add elementor widget.
5, Have you contacted the hosting about the issue I mentioned above?
6, Jobmonster only supports 4 fields as it is now
7, I updated CSS to custom CSS.
8, You can add these lines to custom CSS:
.colophon.wigetized{
background-color: red; // replace "red" -> your color
}
Best regards,
tb.
Hi,
- Change image: You go to Customizer -> Job & Company -> Job List -> Job Heading Background Image -> change image.
- Hide "Save" button:
You can add these lines to custom CSS or style.css of Child Theme:
.job-tools .noo-btn-bookmark {
display: none;
}
Best regards,
tb.
Hi,
If you want change the text english to a different language, you can use Loco Translate plugin.
If you only change the text english, you can custom the manage-appore-reject.php file (/wp-content/themes/noo-jobmonster/layouts/dashboard/)
Note: If you customize, you need to use Child Theme instead of edit directly into the parent theme.
Best regards,
tb.
Hi,
To change the Job search position, you can change the value of these option:
Best regards,
tb.
Hi,
Jobmonster does not currently have this option.
Best regards,
tb.
Hi,
I checked problem number 5.
I found these errors from the console screen. You can contact your hosting for assistance with this issue.
I create this page: https://www.recrutinc.com/resume-grid/
It will normal work when you logout (This problem I think is related to the above error).
Best regards,
tb.
Hi,
You go to Customizer -> Footer -> Footer Top Content (HTML) -> delete the content inside.
Best regards,
tb.
Hi,
You can refer:
https://www.linkedin.com/help/linkedin/answer/46687
You can use plugin Yoast SEO to solve this issue.
Best regards,
tb.
Hi,
I checked your site, the content displayed is quite complete.
The layout displays almost the demo page. You can send me some screenshot to clarify.
Best regards,
tb.
Hi,
I updated some codes, please reload your site and check again (remove browser cache before check).
Best regards,
tb.
Hi,
1, The jobmonster Addon support "Elementor" (include Free and Pro).
2, You can't customize Job Archive page with Elementor. This is the default page to host the job, which is similar to the post archive page. You can only use Elementor to create a custom page using Jobmonster Addon
3, I imported the Slider for "Job Category home" page.
4, The section job search of "Job Listing Home" page: You can customize this option:
5, Resume Grid not work: I checking this issue
6, Review criteria: Since you use French, you can use the Loco Translate plugin and translate for theme.
7, Change black cover picture at the top: you can add these lines to Custom CSS or style.css of Child Theme:
.noo-page-heading{
background: transparent!important;
}
8, Add Logo: You go to Customizer -> Header -> Logo -> http://prntscr.com/q2lbdj
9, You use Loco Translate plugin and translate for Theme.
Best regards,
tb.
Hi,
You can remove this code in the single-noo_resume.php file (wp-content/themes/noo-jobmonster/)
Best regards,
tb.
-
AuthorPosts