Gary Pendergast
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Job Manager] Going to /jobs/ – only normal blog posts appear?You’re not missing anything, that was my mistake. I’ve just release 0.4.5 which fixes this bug.
Fixed the category problem, it’ll be in 0.4.4.
Forum: Plugins
In reply to: Viewing Job Manager – Applications and job appears as ‘ no job’Fixed this bug, it’ll be released in 0.4.4.
Forum: Fixing WordPress
In reply to: [Plugin: Job Manager] Changes to App Form Settings are not savedFound the problem and fixed it, I’ll be releasing it in 0.4.4.
Forum: Fixing WordPress
In reply to: [Plugin: Job Manager] Application Page URLThanks for the report! I’ve figured out the problem, the fix will be in the next release, hopefully in the next day or two!
Forum: Plugins
In reply to: [Plugin: Job Manager] How to add job listing to a pageHow do you mean, ‘add a job’? As in, you can setup Job Manager on your site, then charge employers show their jobs?
This is due in version 0.7.0, currently scheduled for late Feb.
Forum: Plugins
In reply to: [Plugin: Job Manager] place form where I want it?Ah, I see.
The page is dynamically generated by the settings in the ‘App. Form Settings’ admin page. As you mentioned in your other post, it seems to be having some problems, I’ll work on fixing it up asap.
Forum: Plugins
In reply to: [Plugin: Job Manager] place form where I want it?Is there something in particular you’d like to be able to do? Shortcodes aren’t high on my priority list at this point in time – I’ll probably target them for version 1.0 (due March-ish).
Forum: Fixing WordPress
In reply to: [Plugin: Job Manager] Changes to App Form Settings are not savedHrrm, I’m seeing a similar problem. Thanks for the bug report, I’ll get this fixed for the next release. (Due out in the next few days.)
Forum: Plugins
In reply to: [Plugin: Job Manager] place form where I want it?Unfortunately not at this point. Assuming your main page has the default slug ‘jobs’, it will always be at:
/jobs/apply/ – for general applications
/jobs/apply/category-slug/ – for applications in a specific category
/jobs/apply/n/ – when applying for job #n.Forum: Plugins
In reply to: [Plugin: Job Manager] Sorting Job listingsYeah, I’m prepared to do that if I just can’t get it to work, but I’ll see what I can make happen, first.
I may just have to put my own copy in, then want for WP 3.0 to make including that stuff nicer. (I seem to recall something about a wp-admin/{page|post}.php re-write/integration/whatever.)
Forum: Plugins
In reply to: [Plugin: Job Manager] Header and other suggestion1) Yep, you’re right. I was thinking about that, but didn’t get around to it. I’ll put it in 0.6.0 (my catch-all version for small features that I want to put in.)
2) Another one for 0.6.0.
3) On the cards for 0.7.0.
4) Another one that I’m planning for 0.7.0.
You can see the development roadmap as it stands here:
https://code.google.com/p/wordpress-job-manager/wiki/RoadmapThanks for the feedback!
Forum: Plugins
In reply to: [Plugin: Job Manager] Sorting Job listingsThat’s definitely on the list of stuff I want to do – I just have to make it play nicely with the built in WordPress TinyMCE.
Forum: Plugins
In reply to: [Plugin: Job Manager] How to show job listings as post stream on homepageI’m planning on adding a widget for version 0.6.0, due out mid Feb.
If you’re okay with adding some custom code before then, you can grab a list of all the available jobs as so:
$jobs = get_posts('post_type=jobman_job');
This will give you an array of jobs. Have a look at the
jobman_display_job()
function in jobman-display.php:323 for how you can then process these jobs.Forum: Plugins
In reply to: Viewing Job Manager – Applications and job appears as ‘ no job’Sounds like it. I’ll check it out.