NooTheme Premium WordPress Theme › Forums › JobMonster › Default colour not changing
- This topic has 42 replies, 3 voices, and was last updated 4 years, 8 months ago by hoannt@vietbrain.
-
AuthorPosts
-
4 years, 11 months ago #1082519
Hello,
I need support on two matters
1 Default colour not changing. - I am not using any cashing.
2. How do enable the employer to rate the employee
4 years, 11 months ago #1082520This reply has been marked as private.4 years, 11 months ago #1082521This reply has been marked as private.4 years, 11 months ago #1082544Can I have some feedback please?
4 years, 11 months ago #1082548Hi,
You currently enable ssl protocol for your website. Some css paths still hold the http: // protocol.
I installed the Reallty Simple SSL plugin and it solved this problem.
Please reload your site and check again.
Best regards,
tb.
4 years, 11 months ago #1082566Thanks for your support.
I still have - 2. How do enable the employer to review the employee => that needs answering. I can do this when logged in as an administrator but what do we need to do for the employer to review the Employee ?
4 years, 11 months ago #1082573Hi,
You need to active Child Theme and add this function to functions.php file of Child Theme:
function noo_can_post_resume_review($resume_id = null){
if( empty( $resume_id ) )
return false;
// Resume's author can view his/her resume
$candidate_id = get_post_field( 'post_author', $resume_id );
if( $candidate_id == get_current_user_id() ) {
return true;
}
$can_view_resume = false;
// Administrator can post review all resumes
if( 'administrator' == Noo_Member::get_user_role(get_current_user_id()) || Noo_Member::is_employer(get_current_user_id())) {
$can_view_resume = true;
}elseif( isset($_GET['application_id'] ) && !empty($_GET['application_id']) ) {
// Employers can view resumes from their applications
$job_id = get_post_field( 'post_parent', $_GET['application_id'] );
$company_id = noo_get_post_meta($job_id,'_company_id');
$employer_id = get_post_field('post_author',$company_id);
if( $employer_id == get_current_user_id() ) {
$attachement_resume_id = noo_get_post_meta( $_GET['application_id'], '_resume', '' );
$can_view_resume = $resume_id == $attachement_resume_id;
}
}
return $can_view_resume;
}
Best regards,
tb.
4 years, 11 months ago #1082647Thanks it worked perfectly
4 years, 10 months ago #1082904Hi,
I have ran a test on google - https://developers.google.com/speed/pagespeed/insights/
and is showing very low performance - currently in the bottom category according to the tool.
Can you please advise? I have installed some caching tool and still no joy.
4 years, 10 months ago #1082940Hi,
You can use plugin W3 Total Cache, Optimize image.
If you don't use map you should disable them. (You can send me FTP account, I will help you add this option).
4 years, 10 months ago #1082957Thanks for the below feedback.
We really need to figure out a way to collect money from the customer on a recurring basis with out asking the customer to pay every time. What is your suggestion to do this?
4 years, 10 months ago #1082973??
4 years, 10 months ago #1082984Hi,
Currently you can only use the "Expired After" option (The time that buyer can use this package.)
4 years, 10 months ago #1083409Hi,
Thanks for all your help.
I have looked trough all your notes...and can't find the answer.
I need to be able to hide the Company name and logo from the single job page and the map view. I have managed to do this on the list view.
Can you please confirm how I can do this ?
Can I have some CSS code for this? or some PHP Function code.
4 years, 10 months ago #1083419Hi,
Do you want to hide all information of Comany sidebar or just Logo and title.
4 years, 10 months ago #1083444I just the company name and logo.
4 years, 10 months ago #1083482Hi,
You can use this CSS code:
#company-desc .company-header .company-featured,#company-desc .company-header .company-title{
display: none;
}
Best regards,
tb.
4 years, 10 months ago #1083508Thanks for the code.
I have added the code to the website and it still not working.... see attached screenshot.
I added in on the customiser screen
Attachments:
You must be logged in to view attached files.4 years, 10 months ago #1083518Hi,
You can use this code:
.single-noo_job .noo-page-heading .logo-company,.single-noo_job .noo-page-heading .company-title {
display: none;
}
4 years, 10 months ago #1083591Thanks for the support it is great and the above worked.
I had look in the plugins and can't find where to change it.
The user goes to load a resume, the plugin force you to select a package, then you do the resume and only after wards you ask for the payment. How can i collect the payment the same time when the person select his package? and not after the resume.
4 years, 10 months ago #1083643This reply has been marked as private.4 years, 10 months ago #1083652Hello, Can I please have some feedback on my last message?
4 years, 10 months ago #1083653it actually looks like fa-facebook-square is missing
4 years, 10 months ago #1083654Not to worry about the above... I installed awesome icons and it started working
4 years, 9 months ago #1084223Hello Thinben,
URGENT URGENT Support.
in the latest version your company as introduced Enable Post Review Resume under the resume tab of JOBMonster. This is creating a problem as the user is not able to post his resume as the system is insisting resume review by the same person posting the resume.
Even if we use the following code supplied by yourself earlier on this chat. The Review process is not working.
function noo_can_post_resume_review($resume_id = null){
if( empty( $resume_id ) )
return false;
// Resume's author can view his/her resume
$candidate_id = get_post_field( 'post_author', $resume_id );
if( $candidate_id == get_current_user_id() ) {
return true;
}
$can_view_resume = false;
// Administrator can post review all resumes
if( 'administrator' == Noo_Member::get_user_role(get_current_user_id()) || Noo_Member::is_employer(get_current_user_id())) {
$can_view_resume = true;
}elseif( isset($_GET['application_id'] ) && !empty($_GET['application_id']) ) {
// Employers can view resumes from their applications
$job_id = get_post_field( 'post_parent', $_GET['application_id'] );
$company_id = noo_get_post_meta($job_id,'_company_id');
$employer_id = get_post_field('post_author',$company_id);
if( $employer_id == get_current_user_id() ) {
$attachement_resume_id = noo_get_post_meta( $_GET['application_id'], '_resume', '' );
$can_view_resume = $resume_id == $attachement_resume_id;
}
}
return $can_view_resume;
}
-
AuthorPosts
You must be logged in and have valid license to reply to this topic.