How to make job application exclusive to registered members
By default, webJobs allows guests to apply to jobs. If you want only registered members to apply to jobs, you will need to make some basic modifications to the PHP code. This requires you to download a file from your server through FTP, modify it in any text editor (like Notepad), and then upload it back up.
Here are the steps:
- Log onto your FTP server
- Download /engine/pages/apply_for_job.php
- At the top, find this code:
$this->_need_login = false;
change it to:
$this->_need_login = 'seeker'; - Upload the modified file to the server and overwrite the original