NooTheme Premium WordPress Theme › Forums › JobMonster › Application view notification
- This topic has 19 replies, 3 voices, and was last updated 4 years, 4 months ago by dangdv.
-
AuthorPosts
-
4 years, 5 months ago #1204139
Hi
Can application view notification be enabled for candidates.
Idea is most of the time recruiters check the applications from candidates but they don't update status "rejected/Selected". It really disappoints candidates and they are not sure whether their applications have actually been viewed by recruiters or not?
Thus, whenever an application is viewed by recruiters, candidate is also notified via mail. This feature would really help candidates and keep them motivated. Similar feature is already available with LinkedIn and other job portals.
I am also looking for a feature about customizing emails send to recruiters/candidates when they set alert.
Can you bring this feature in coming update please?
Thanks
4 years, 5 months ago #1204140-
4 years, 5 months ago #1204217I don't think that is feature, that only notice when view detail the application, like in the case where they found a candidate and they don't need view more applications or they're can delete application without view or send message without view details... If they need candidates, they will proactively contact.
Best regards.
4 years, 5 months ago #1204220As of now, employer can accept or rehject application but there is a huge possibility that he have atleast looked into candidate's profile / resume / application. So if candidate can be told that your profile /application / resume have been viewed by respective employee, he would be happy that atleast his application is viewed and the entire setup of job portal is working. As of now he is not aware whether his application is reaching to employer or not since most employers dont respond to job seekers application if they dont find him relevant.
Now, instead of accepting problem in himself, job seeker feels that his application might not be reaching to employer or there is some problem in portal itself.
Ideally, employers should respond to every application they received as accepted/rejected but most of the time they dont do it,,thats why Linkedin /glassdoor etc job platform send mail to candidate when his application is viwed by recruiter. That boost the moral of candidate and establish trust in system
Please try and understand its relevance and requirement.
4 years, 5 months ago #1204269Dear, In current version not support any hook action when Employer click to Message 'View Details' we're will add hook action in next update version then will help you add hook send email for Candidate when when Employer click to Message 'View Details'
Best regards.
4 years, 5 months ago #1204295Thanks..looking for update
4 years, 5 months ago #1204375Is this feature rolled in 4.6.1 update?
4 years, 5 months ago #1204400Dear, in version 4.6.1 not include that feature because that not is global feature, in version 4.6.1 only include hook when Employer click to click to Message 'View Details', If you want send email notice for Candidate when Employer click to Message 'View Details' .please install and switch your site to use Jobmonster child theme, then add custom code in file functions.php of Jobmonster child theme.
Code
add_action('noo_on_employer_message_application_modal', function($application_id){ $application = get_post($application_id); if(is_wp_error($application) || empty($application)){ return; } $candidate_name = get_the_title($application); $candidate_email = noo_get_post_meta( $application->ID, '_candidate_email' ); if(empty($candidate_email)){ return; } $job = get_post( $application->post_parent ); $job_link = $job_title = ''; if($job && $job->post_type === 'noo_job'){ $job_link = get_permalink($job); $job_title = get_the_title($job); }elseif ( $job_applied = noo_get_post_meta( $job->ID, '_job_applied_for', true ) ){ $job_title = $job_applied; } $subject = 'Application viewed notice'; $message = ''; $message .= sprintf( __( 'Hi %s' ), '<strong>'.$candidate_name.'</strong>' ) . "\r\n\r\n"; $message .= 'Your application apply for '; $message .= '<strong>'.(!empty($job_link) ? '<a href="'.$job_link.'">'.$job_title.'</a>' : $job_title).'</strong> is viewed by Employer.'. "\r\n"; $result = noo_mail($candidate_email, $subject, $message,'','noo_on_employer_message_application_modal'); });
Best regards.
4 years, 5 months ago #1204416I really appreciate this code and it really works.
I was thinking can this code be slightly modified such that it sends mail to candidate not only when "View Message" is clicked but also if employer clicks on attachment or candidate profile, mail should be sent.
This way even when recruiter clicks on the link provided in the mail without visiting the portal, still candidates get to know that his details have been viewed.
Please check if this could feature could also be integrated in the existing code!
Thank you
4 years, 5 months ago #1204443Sorry, because when Employer click to 'view resume' in attachment, it will redirect to detail resume and we're can't add hook to send email notice for Candidate, if add hook when view detail resume, It will also send when view resume via Resumes archive page.
Best regards.
4 years, 4 months ago #1204576Ok.
Can u reformat this message by adding next line characters. I tried adding \n. \r\n, and many others but it did not work.
$message .= ''.(!empty($job_link) ? ''.$job_title.'' : $job_title).' is viewed by Employer. If your profile is found suitable as per requirement, they may either approve your application on Genuine Hires portal or may directly contact you for further proceedings. Best Wishes! Genuine Hires Job Portal India\'s 1st Genuine Job Portal' ;
So that it appears like this in mail
Hi abhi
Your application apply for DXC is hiring for multiple positions is viewed by Employer.
If your profile is found suitable as per requirement, they may either approve your application on Genuine Hires portal or may directly contact you for further proceedings.
Best Wishes !
Genuine Hires
India;s 1st Genuine Job Platform
4 years, 4 months ago #1204624Dear, please change to use br tag like attachment
Attachments:
You must be logged in to view attached files.4 years, 4 months ago #1204650For Some reasons applications are not visible to employers. It was good till couple of days back but now it showd blank, Screenshot attached for reference.
Also 'Remember me' feature at login page is not storing new password. It still remembers old password.
Please check
Attachments:
You must be logged in to view attached files.4 years, 4 months ago #1204670Dear, please kindly send for me admin account your site via private reply, i will check details to help you.
Best regards.
4 years, 4 months ago #1204681This reply has been marked as private.4 years, 4 months ago #1204689This reply has been marked as private.4 years, 4 months ago #1204691This reply has been marked as private.4 years, 4 months ago #1204718This reply has been marked as private.4 years, 4 months ago #1204726This reply has been marked as private.4 years, 4 months ago #1204754Dear, I have checked many times your site on firefox and i see it still working like attachment, you can open 'Console Log' on firefox (see attachment ) to check whether there is an error during load.
Also, In new version 4.6.1 use ajax load in Application, if you don't want use ajax load and switch to use default of old version, please kindly add custom code in file functions.php of your theme to disable ajax load in Application.
add_filter('noo_member_dashboard_ajax_application_datatable', '__return_false');
Best regards.
Attachments:
You must be logged in to view attached files. -
AuthorPosts
You must be logged in and have valid license to reply to this topic.