Gary Pendergast
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Job Manager] “Display End Date” IssuesPlease do. 🙂
Forum: Plugins
In reply to: [Plugin: Job Manager] “Display End Date” IssuesNice catch on the text. 🙂
You’re right, the position should stop displaying if the end date is set to some time in the past. I’ll look into this and get a fix in place. I’m mid-way through development for version 0.5, so this bug fix may get rolled into that version, rather than another 0.4.x release.
Thanks for the feedback!
Forum: Plugins
In reply to: [Plugin: Job Manager] Activation Fatal ErrorDocumentation is a bit scarce at the moment, I’m spending most of my time coding. I’ll hopefully have time to expand that once I’ve reached a feature-complete version.
Does the new job show up under the Jobs Listing page on your blog?
You mentioned that nothing happened when you visited the Jobs Listing page – was there any text at all? If so, could you please copy and paste it here.
There may have been some problems during installation that left your copy in an unstable state – are you okay with manually checking and editing your WordPress database?
Forum: Plugins
In reply to: [Plugin: Job Manager] Activation Fatal ErrorHere’s a workaround for this problem. Replace line 555 of jobman-display.php:
$cat_arr[] = get_term_by('slug', $cat, 'jobman_category')->term_id;with:
$data = get_term_by( 'slug', $cat, 'jobman_category' ); if( isset( $data->term_id ) ) $cat_arr[] = $data->term_id;Also, what version of PHP are you using?
Forum: Plugins
In reply to: [Plugin: Job Manager] Job Lisiting category displayNot at the moment – I’m planning on making categories play nicer with WP in version 0.6. In the mean time, a HTML list is probably the easiest method.
Search is planned for version 1.0. JM stores a fair bit of meta data that the default WP search can’t see.
Good to hear you’re liking the plugin, thanks for the feedback!
Forum: Fixing WordPress
In reply to: [Plugin: Job Manager] Fatal Error on Application Listing PageCool – I’ll release 0.4.8 in the next day or two with this fix included.
Forum: Plugins
In reply to: [Plugin: Job Manager] Repeated Applications and Failure to Upload ResumeNo, I’ve made a fix for 0.4.8, which I’ll release today or tomorrow.
Thanks for the feedback, and the help in tracking this bug down!
Forum: Plugins
In reply to: [Plugin: Job Manager] Repeated Applications and Failure to Upload ResumeCould I get you to comment out line jobman-conf.php line 1067? I think this might be causing the problem of hundreds of applications displaying.
For reference, this line:
http://code.google.com/p/wordpress-job-manager/source/browse/tags/0.4.7/jobman-conf.php#1067I’m not sure where the “you need to upload your resume” error is coming from – Job Manager doesn’t have such an error message, and the default installation doesn’t enforce uploading a resume. Have you made any changes to the Application Form Settings?
Forum: Fixing WordPress
In reply to: [Plugin: Job Manager] Fatal Error on Application Listing PageI’ve done some testing, but been unable to reproduce this issue. Was this after upgrading to version 0.4.7? If so, please comment out jobman-display.php:1067, and see if the issue persists.
For reference, this is the line you’re looking for:
http://code.google.com/p/wordpress-job-manager/source/browse/tags/0.4.7/jobman-conf.php#1067Forum: Plugins
In reply to: [Plugin: Job Manager] Going to /jobs/ – only normal blog posts appear?Not having the correct jobman_options option could be causing these issues.
When it attempted to re-create the option, it would have also assumed that this was a fresh installation, so it would have tried to re-create all the back-end pages, too.
I would recommend doing the following:
– Delete all categories using the Job Manager Settings page
– Open your wp_posts table and delete all posts with the post_type of jobman_joblistThis should hopefully clear out any cruft, so you can re-create the categories again.
Forum: Plugins
In reply to: [Plugin: Job Manager] changing Job Listing pageThis is currently not possible – the page is automatically generated when a page is loaded.
I’m planning on having this editable in version 0.7, tentatively scheduled for release in late Feb.
Forum: Plugins
In reply to: [Plugin: Job Manager] Going to /jobs/ – only normal blog posts appear?This is fixed in 0.4.7, which I’ll release in the next few hours.
Forum: Plugins
In reply to: [Plugin: Job Manager] Limit on number of jobs allowed?Yes, you are – it seems I missed a spot where WP automatically grabs 5 posts, instead of all of them. I’ll release 0.4.7 in the next few hours with a fix for this.
Forum: Plugins
In reply to: [Plugin: Job Manager] Changing the default jobs directory?This should work again if you install the latest version.
You’ll now see a ‘Jobs’ page in your list of Pages. this is the root page for Job Manager, you can manipulate it as you would any other page.
So, to do what you want, you should:
– Change the title from ‘Jobs’ to ‘Career Opportunities’.
– Change the slug from ‘jobs’ to ‘career-opportunities’.
– Change the Parent from ‘Main Page’ to ‘About Us’.Please let me know how this goes, or if you run into any further issues.
Forum: Plugins
In reply to: [Plugin: Job Manager] 0.4.5 More IssuesFor showing jobs from a certain category, you just need to add the Category Slug to the URL:
http://yoursite.com/jobs/category-slug/
I’ll have a look at the icon problem. It seems to be storing something incorrect in the icon data value.
For the img tag, it has the closing
/>already. Could you check jobman-display:294 of your install to see if this is correct for you?General application form exists, just go to:
http://yoursite.com/jobs/apply/
Thanks for the feedback!