Hi, thanks for an awesome plugin! I just wanted to know if there is a way to modify the individual job listing URL? I know it's not an option within the Job Manager dashboard but can you let me know which file/function is creating the URL when a new job is added?
Thanks!
http://wordpress.org/extend/plugins/job-manager/
Nevermind, finally found it. It's located in the admin-jobs.php file, on line 1137. I changed the value for the post_name field from jobman-title to a different value.
Original Line:
'post_name' => strtolower( str_replace( ' ', '-', $_REQUEST['jobman-title'] ) ),
My New Line:
'post_name' => strtolower( str_replace( ' ', '-', $_REQUEST['jobman-field-6'] ) ),