Gary Pendergast
Forum Replies Created
-
Forum: Plugins
In reply to: Enable Scripts & CSS only on Job Manager Related PagesThis is a good idea. I’ll include a fix for this in the next release.
Forum: Plugins
In reply to: [Plugin: Job Manager] Multiple category listsIt currently isn’t possible for visitors to search through jobs, I’m planning on adding that in version 0.9:
http://code.google.com/p/wordpress-job-manager/issues/detail?id=47Do you want to add the dropdowns to the Application form on the frontend, or to the Add Job form in wp-admin? The latter is currently not possible, but the former can be done by adding a field with the “Select Dropdown” type, and adding each option on a new line in the “Data” input box for that field.
Forum: Plugins
In reply to: [Plugin: Job Manager] Does plugin send confirmation email to applicant?It doesn’t, but I agree, this would be a useful feature. I’ll be making some changes to emails in version 0.8, so that seems like a good place to include it.
http://code.google.com/p/wordpress-job-manager/issues/detail?id=186
Forum: Plugins
In reply to: [Plugin: Job Manager] Clicking on job title takes you to all posts pageGreat to know you figured it out, though this is definitely a bug. I’ll get onto fixing it.
I’m unable to reproduce this problem with the register button continuing to appear. Do you have any caching plugins installed, that may have an old copy of the page stored?
It is currently not possible to change the “Job Application” title – I’ll look at adding an option for this in a future version.
The error you’re seeing when you submit an application was fixed in Job Manager 0.7.5, please upgrade to the latest version.
Forum: Plugins
In reply to: [Plugin: Job Manager] How to display a “light” list of jobs ?Glad to hear you like it!
In your wp-admin, go to Job Manager->Settings->Display Settings, and scroll down to the Job Templates box. There is a fair bit of documentation there, I would encourage you to read it, in order to understand how the template system works.
In order to do what you want, you need to find the following section in the Job List Template field:
[job_field_loop] [if_job_field] <tr> <th scope="row">[job_field_label]</th> <td>[job_field]</td> </tr> [/if_job_field] [/job_field_loop]And swap it for:
[if_job_field1] <tr> <th scope="row">[job_field1_label]</th> <td>[job_field1]</td> </tr> [/if_job_field1] [if_job_field2] <tr> <th scope="row">[job_field2_label]</th> <td>[job_field2]</td> </tr> [/if_job_field2] [if_job_field3] <tr> <th scope="row">[job_field3_label]</th> <td>[job_field3]</td> </tr> [/if_job_field3] [if_job_field4] <tr> <th scope="row">[job_field4_label]</th> <td>[job_field4]</td> </tr> [/if_job_field4]This is only the simplest change – in order to get it looking exactly how you want, you’ll probably need to play around with the HTML a bit.
Forum: Plugins
In reply to: [Plugin: Job Manager] Installed but nothing on pageIt should be replacing the fake text, even if there are no jobs.
Are there any parameters you’re adding to all
query_posts()?In your wp-admin section, go to Job Manager->Settings, scroll down to the User Settings box, and uncheck “Enable User Registration“.
Forum: Plugins
In reply to: [Plugin: Job Manager] Removing the “Apply Now” link on the jobsGreat to hear that you like it! 🙂
Forum: Plugins
In reply to: [Plugin: Job Manager] fetching last x job ads in other website!There is an RSS feed, at yoursite.com/jobs/feed/. You can use an RSS importer on your other site to get the info from there.
Forum: Plugins
In reply to: [Plugin: Job Manager] How to keep my CSS additions when upgrading JM?You can’t put them in the display.css file, (as you’ve discovered), WordPress deletes the old version of the plugin, do avoid any conflict issues.
Instead, I would suggest putting your custom CSS into your theme’s CSS file, which won’t be touched when Job Manager is upgraded.
Forum: Plugins
In reply to: [Plugin: Job Manager] cant upload more than 25 icons!This will take a fair bit of refactoring to work nicely – I’ll look at it for version 0.9.
Forum: Plugins
In reply to: [Plugin: Job Manager] no directoryOkay, I’ll be jumping on a flight shortly, but I’ll look into this further next week.
Forum: Plugins
In reply to: [Plugin: Job Manager] Page Title Not ShowingI’ve made some changes to how the title handling is done in the upcoming 0.7.6 release, please let me know if have any issues with that version.
Forum: Plugins
In reply to: [Plugin: Job Manager] cant upload more than 25 icons!I’ve been able to reproduce this issue – it is evidently caused by PHP’s
max_file_uploadssetting, which controls the maximum number of files that can be uploaded at any one time.Job Manager is running into this, because it keeps all the file upload options for each icon, so you can change them easily. The PHP team are not going to change how this behaves (counting empty uploads towards the
max_file_uploadslimit), so I recommend you edit yourphp.inifile, to increase themax_file_uploadssetting.Please let me know if this fixes your situation.