Hello,
I have added the following to my Theme Functions (functions.php) file but I am still unable to get CVs attached to the email that goes to HR. Can you please advise on what else I need to do?
Thanks
Andrew
// Filter to Attach HR Resume
add_filter(‘sjb_hr_notification_attachment’, ‘custom_code_for_hr_resume_attachment’, 20, 2);
function custom_code_for_hr_resume_attachment( $resume_path, $post_id ){
return get_post_meta($post_id, ‘resume’, TRUE);
}