Gary Pendergast
Forum Replies Created
-
Forum: Plugins
In reply to: [Job Manager] [Plugin: Job Manager] File type and sizeJob Manager uses WordPress’ builtin media upload handler, so will be restricted based on that.
For file size, this is controlled by your
upload_max_filesizeandpost_max_filesizeinphp.inior your.htaccessfile.For file type, WordPress automatically blocks dangerous file types. I haven’t created an option to restrict this further, and currently have no plans to do so. I would recommend putting an instruction in the application form, and using it as an exercise in reading and comprehension for your applicants. 🙂
Forum: Plugins
In reply to: [Job Manager] [Plugin: Job Manager] Job title as the SubjectGlad I could help. 🙂
Forum: Plugins
In reply to: [Plugin: Job Manager] Enabling custom translationThanks for the translation, I’ll check it out and email you back.
To set the language in Job Manager, you need to set the WP_LANG setting in wp-config.php.
Forum: Plugins
In reply to: [Job Manager] [Plugin: Job Manager] Conflict with MU blog creationWell, that’s problematic. I’ll see if I can fix this up.
http://code.google.com/p/wordpress-job-manager/issues/detail?id=213
In the same form, do you have any fields with “Mandatory field?” checked? These fields must be filled in when the form is submitted. Uncheck this box to remove this requirement.
Forum: Plugins
In reply to: [Job Manager] [Plugin: Job Manager] Job title as the SubjectSorry, wrong instructions – I forgot that I changed how that code works. Undo that change, and make this one instead. On line 899 of
frontent-application.php, replace:$data = get_post( $parent );with:
$data = get_post( $parent ); $subject = $data->post_title . ': ' . $subject;Ah, I completely missed it. You need to close the if tag with another if tag. ie, you’re currently doing this:
[if_job_field2] <tr> <th scope="row">[job_field2_label]</th> <td>[job_field2]</td> </tr> [/job_field2]You need to do this:
[if_job_field2] <tr> <th scope="row">[job_field2_label]</th> <td>[job_field2]</td> </tr> [/if_job_field2]Forum: Plugins
In reply to: [Job Manager] [Plugin: Job Manager] Conflict with MU blog creationBlog creation in MU doesn’t play nicely with some plugins, Job Manager being one of them. I’m looking at ways to fix this, in the mean time, try installing this as a workaround:
http://wordpress.org/extend/plugins/proper-network-activation/
Forum: Plugins
In reply to: [Job Manager] [Plugin: Job Manager] Problem displaying jobs listingIf you like, I can login to your wp-admin and have a look. Please email me at gary@pento.net.
Forum: Plugins
In reply to: [Job Manager] [Plugin: Job Manager] Job title as the SubjectUnfortunately, there’s no release date at the moment – development has stalled a little due to other things taking priority. It isn’t abandoned, though! 🙂
As a temporary workaround for this, on line 873 of
frontend-application.php, change:$subject = $options['application_email_subject_text'];to:
$subject = $job->post_title . ': ' . $options['application_email_subject_text'];Note that you’ll need to re-apply this fix if there are any more 0.7.x releases between now and 0.8.
Forum: Plugins
In reply to: [Job Manager] [Plugin: Job Manager] Change slug for Job Listing pageTo fix this, in your wp-admin, go to Pages->Edit, then click on the Trash link. You’ll see an old Jobs Listing page there – delete it. You can then edit the real Jobs Listing page to fix the slug!
Forum: Plugins
In reply to: [Job Manager] [Plugin: Job Manager] escaped charactersIf you go to Job Manager->Settings->Job Form Settings, you can edit the titles. I’ll look into why the translation is doing this.
I was unable to reproduce this issue. Could you post your entire template?
Forum: Plugins
In reply to: [Job Manager] [Plugin: Job Manager] Problem displaying jobs listingI’ve seen this happen when WP is picking the wrong template to display with. In wp-admin, go to Pages->Edit, find the Jobs Listing page, and change the template to be the one you want to use for pages.
Forum: Plugins
In reply to: [Job Manager] [Plugin: Job Manager] Job title as the SubjectThis will be possible in the next version:
http://code.google.com/p/wordpress-job-manager/issues/detail?id=155