Closed (fixed)
Project:
Job Posting
Version:
5.x-1.3
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
9 Sep 2008 at 03:34 UTC
Updated:
13 Sep 2008 at 20:26 UTC
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
Comment #1
gmarus commentedin 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) {"
Comment #2
Andy Galaxy commentedPerfect, 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)
Comment #3
Andy Galaxy commented