Forum Replies Created
-
AuthorPosts
-
This reply has been marked as private.
Hi,
You use Child Theme and customize the following files:
- job_form.php (wp-content/themes/noo_jobmonster/layouts/forms/)
- company_profile.php (wp-content/themes/noo_jobmonster/layouts/company/)
____________________________________________
- Change the text "Describe your company and vacancy": you put this function to the functions.php file of Child Theme and edit the text.
function jm_get_page_post_job_post_step(){
$title = __('Describe your company and vacancy','noo');
$link_args = array('action'=>'post_job');
$job_id = isset($_GET['job_id']) ? absint($_GET['job_id']) : 0;
if($job_id) {
$link_args['job_id'] = $job_id;
}
$link = esc_url(add_query_arg($link_args));
return apply_filters( 'jm_page_post_job_post_step', array(
'actions' => array( 'post_job' ),
'title' => $title,
'link' => $link
) );
}
- Hide the text "Professional Summary": you can add these lines to style.css of Child Theme:
label[for="desc"] {
display: none;
}
Best regards,
tb.
This reply has been marked as private.The media screen CSS still normal works.
As you can see there will be priority:
- With class "col-md" => if media screen > 992px
- With class "col-sm" => 768px < media screen < 992px
Hi,
There are 2 ways you can do it
1, Override the "jm_register_job_post_type" function: you can copy it to the functions.php file of Child Theme.
2, Override init.php file: you can refer to this article.
Best regards,
tb.
About the "resume" problem:
I took a closer look at Jobmonster. This is not really an error.
When you enable "posting resume" by "Candidates with Paid Package" function, the package will have an expiration time. => There will be a function to automatically scan the resume with expired Candidates and move it to pending status => I'm just not sure how you created a previous resume.
You can send me a FTP account to check this problem.
Best regards,
tb.
Hi,
You go to the functions.php of Child Theme and remove this line:
noo_update11_resume_expired();
This reply has been marked as private.This reply has been marked as private.Hi,
- You can translate this text "Please confirm your email address to complete your registration" to "Bitte bestätigen Sie zuerst Ihre E-Mailadresse. In Ihrem Posteingang finden Sie eine E-Mail von WebSite mit dem Bestätigungslink".
- We will update the "unsubscribe" link in each email. It will be updated in the next version.
Best regards,
tb.
Hi,
Currently we use Fontawesome as default and there is no option to upload more font icons to this position.
Best regards,
tb.
Hi,
You can add these lines to Custom CSS:
.noo-step-icon-advanced:before{
display: none;
}
Later your can change the background image in here:
Best regards,
tb.
Hi,
You go to Customizer -> Design & Layout -> turn off this option http://prntscr.com/q82qdk
Hi,
Please send me link your site and a screenshot to clarify.
Best regards,
tb.
Hi,
If you use a language other than English. You can use the Loco Translate plugin and translate them.
Best regards,
tb.
Hi,
1. To change the color of hyperlinks of an element without affecting other locations, you will need a separate class and add CSS for it. As the above position, you can use the following lines:
.noo-subtitle-sc a {
color: #ff9b00;
}
.noo-subtitle-sc a:hover {
color: #ff9b00;
}
2.
How to increase the transparency of the heading background so that the image shows more?
You can add these lines to custom CSS:
header.noo-page-heading {
background: rgba(67, 67, 67, 0.2)!important;
}
Best regards,
tb.
Hi,
I took a closer look at Jobmonster. This is not really an error.
When you enable "posting resume" by "Candidates with Paid Package" function, the package will have an expiration time. => There will be a function to automatically scan the resume with expired Candidates and move it to pending status => I'm just not sure that your package has 18 months but when users create a resume it doesn't seem to update the expiration time for this resume.
You can send me a FTP account to check this problem.
Best regards,
tb.
Hi,
Jobmonster is the topic to post jobs -> completely removing code is not feasible. Jobmonster currently has no option to turn off job posting.
You can try the following steps to hide post a job:
- You need to active the Child Theme, because you will need to customize the code.
- Select dropdown menu item for Employer. http://prntscr.com/q6wzvv
- Set the redirect url when employer login: http://prntscr.com/q6x0q4
If you leave this blank, it will redirect to the job management page
- Add this line to functions.php of Child Theme: remove the button "Post a Job"
remove_filter( 'wp_nav_menu_items', 'noo_navbar_btn', 11, 2 );
- You use Child Theme and customize these files to remove the menu item "Post a job".
wp-content/themes/noo-jobmonster/layouts/user-menu.php
wp-content/themes/noo-jobmonster/layouts/topbar.php
Best regards,
tb.
Hi,
I checked on a Mac and it has the same color error.
First of all you need to fix the https:// error on your site.
Latter, clear your browser's cache and try again.
Best regards,
tb.
Hi,
Jobmonster does not currently have this function. Currently I can only give this option:
Each of your departments corresponds to an user employer . The HR department will have account information for these departments. And when one of your departments needs to recruit personnel, the HR department will post a job with this department's account and when the user applies to that job -> This department can directly view without HR department resources the record distribution.
------------------------------------------------------------------------------
Best regards,
tb.
Hi,
I checked this problem and it seems to exist on Jobmonster. You can either wait for the update or send me an FTP account. I need it to update the code.
Best regards,
tb.
Hi,
I need an FTP account to be able to debug this problem.
Best regards,
tb.
Hi,
Sorry, we are currently unable to help you integrate this API.
Currently developers are busy with new products.
We will look when they finish these new products.
Best regards,
tb.
Hi,
Please send me wp admin info (Set as private reply).
I will help you check.
Best regards,
tb.
Hi,
Please send me the admin account info (Set as private reply)
Best regards,
tb.
-
AuthorPosts