Gary Pendergast
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Job Manager] Application submissions not being sent/receivedAre emails from the rest of the site working? Ie, new registration, forgotten password, comment submission, etc.
Forum: Plugins
In reply to: [Plugin: Job Manager] User issueGreat to know you figured it out – I’m planning on adding a Dashboard of some description at some point, which will be the first option in the menu, so will fix this problem.
Forum: Plugins
In reply to: [Plugin: Job Manager] Shortcode Link URLThis is correct behaviour, but I see the problem you’re facing.
I’ll include a new template in 0.7.1,
category-foo-job.php, wherefoois the name of the category. This will overridecategory-foo.php.Forum: Plugins
In reply to: [Plugin: Job Manager] Jobs List Back-End ViewTo add a custom field to the admin Job List, you just need to go to Job Form Settings and check the corresponding Show this field in the Admin Job List? option.
Applications will show up as no job if you use the application form at
/jobs/apply/, or/jobs/apply/some-category/. To associate an application with a job, you need to use/jobs/apply/n/, where n is a job number. This is the application form linked to by the ‘Apply Now!’ link on any job details page.Forum: Plugins
In reply to: [Plugin: Job Manager] Sorting Job listingsI’ll release 0.7.1 in the next day or two, which will include the TinyMCE editor. If you want it before then, you can make a simple version by editing
admin-jobs.php:Line 252, add the following code:
wp_tiny_mce( false, array( 'editor_selector' => 'jobman-editor' ) );Line 402 and 405, add
jobman-editorto theclassproperty of the<textarea>tag.Forum: Plugins
In reply to: [Plugin: Job Manager] Email AttachmentsThis will be in version 0.8, along with HTML emails, and email templates.
Forum: Plugins
In reply to: [Plugin: Job Manager] Sorting Job listingsOh, oops. Missed the link at the bottom of that post for the Visual/HTML switch.
Forum: Plugins
In reply to: [Plugin: Job Manager] Sorting Job listingsWell, that was a quick investigation. All of the stuff for making it like the builtin editor (ie, inserting media, Visual/HTML switch) assumes that there will only be one editor on the page, so that’s not happening.
Forum: Plugins
In reply to: [Plugin: Job Manager] Sorting Job listingsThat is an absolutely brilliant find, thanks!
I’ll include this in the 0.7.1 release – I’ll see if I can tweak it to look more like the WP Post/Page editor.
Forum: Plugins
In reply to: [Plugin: Job Manager] Shortcode Link URLThe idea of using job.php is that you can then add the button you’re after, and it will appear on each job page.
the_permalink()is the function that will return the link to the current page, when used in a template.Unfortunately, there isn’t a way of doing this in the Display Settings at the moment, I’ll look at adding it in version 0.8.
Forum: Plugins
In reply to: Job Manager: Jobs ListThere’s no ability to manually sort the jobs, but you can sort by salary in the upcoming 0.7 release – just go to Display Settings, in the Job List Sorting box, change the Sort By dropdown to “Custom Field: Salary”.
Forum: Plugins
In reply to: [Plugin: Job Manager] Shortcode Link URLThis is an interesting idea. Unfortunately, the upcoming 0.7 release is string frozen, so it can’t make it into there.
What I can do is add the ability to set a template to be used by all jobs – if you create a template called job.php, it will load that for any jobs.
I’ll add this to the 0.7 stable release, due out (hopefully) today or tomorrow.
Forum: Plugins
In reply to: [Plugin: Job Manager] Email formattingI certainly see how your client would like this – I know the emails are a bit ugly.
I’ll add this to the 0.8 release, due out in June/July.
http://code.google.com/p/wordpress-job-manager/issues/detail?id=155
Great to know that they love the plugin! If they have any other feedback, feel free to pass it on – I certainly want to hear how it’s being used in the real world. 🙂
My apologies for the delay in replying, I’m on the road at the moment, with fairly limited internet access.
Could I get you to open
wp-content/plugins/job-manager/frontend.php, and add the following code on line 265:if( ! empty( $posts ) ) { $wp_query->queried_object = $posts[0]; $wp_query->queried_object_id = $posts[0]->ID; $wp_query->is_page = true; }Forum: Plugins
In reply to: [Plugin: Job Manager] It asks to fill form in every new applicationThis is correct. The registration system is quite simple at the moment, it’s really only a method for linking a particular user to their applications.
In the future (probable version 1.0, due out later this year), I’ll be adding the ability for users to pre-fill information, build resumes, etc.
Please see the development Roadmap here for further information:
http://code.google.com/p/wordpress-job-manager/wiki/RoadmapFeel free to send through any other ideas you may have, I’d be happy to add them in!