Hi
How can we disable the requirement of only logged-in users applying for a job in v5.x-1.3? I see you've answered (with a hack for v6). We have a site with no users and wnat anyone to be able to apply for jobs.
Cheers

Comments

gmarus’s picture

in job_posting.module:

1. replace line 97 in the function job_posting_menu():
"'access' => _job_posting_logged_in($user)," BECOMES "'access' => TRUE,";

2. replace line 859 in the function theme_job_posting_node_display():
"if ($user->uid != 0) {" BECOMES "if (TRUE) {"

Andy Galaxy’s picture

Perfect, thankyou very much. I am just addiing name and email fields where people can put their details manually on the application page, and once adding CAPTCHA it'll be all go. I love the simpleness of this compared to the Job Search module (don't get me wrong, it's good, but Job Posting is better)

Andy Galaxy’s picture

Status: Active » Closed (fixed)