bikash01
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Job Board] Send the uploaded CV to HRThanks a lot @hhetpanchal. I have tried doing your way and now it works perfectly. Thanks again.
Forum: Plugins
In reply to: [Simple Job Board] Send the uploaded CV to HRHi,
I have used the code below which is provided by @icyice to receive attachment along with the emails, but it’s not working. I have put the code inside my theme fucntions.php file. Could you help me with this please. Thank you.
/** * Job Board stuffs * * */ // Filter to Attach HR Resume add_filter('sjb_hr_notification_attachment', 'custom_code_for_hr_resume_attachment', 20, 2); add_filter('sjb_admin_notification_attachment', 'custom_code_for_hr_resume_attachment', 20, 2); function custom_code_for_hr_resume_attachment( $resume_path, $post_id ){ $fileAttachment = get_post_meta($post_id, 'resume', TRUE); $filePath = parse_url($fileAttachment, PHP_URL_PATH); return array(get_home_path() . $filePath); }
Kind Regards,
Bikash
Hi,
I apologise for the earlier confusion. Thank you very much for all the help.
Kind Regards,
Bikash
Hi,
I wasn’t necessarily thinking about deleting the job posts but rather just hide it from the job listing page on the front-end site after the position has been filled out.
However, I think that the posts needs to be published publicly for being able to be viewed on the site. So, I was wondering if there is a way by which individual job posts can be hidden from the site but when users are redirected to that page through links from other sites, they are still able to view that page.
Thank you.
Kind Regards,
Bikash
Hi,
Thank you for your reply but I am still a little bit confused.
I still don’t understand what would happen, for an example, if a user were to be redirected to the individual job post on the website after clicking on the link from the social media. However, if the posts was not available on the website anymore ( if it was deleted/ hidden from the front-end site because the position has been filled out)
Then, would the user get a 404 error page or would they possibly be shown the archived version of the page from when it was published on the site ?
Kind Regards,
Bikash