Gary Pendergast
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Job Manager] Date selector rangeI’ll look at ways of making this better. If you click on 2000, the year dropdown will be re-generated to be 10 years earlier, but this isn’t really obvious.
Forum: Plugins
In reply to: [Plugin: Job Manager] the rest of the Pages wont show up from DashboardWait, it’s possible I misunderstood this.
Are you saying your normal pages aren’t showing up? Ie, you made (for example) http://yoursite.com/about/, but it doesn’t appear in the edit pages list?
Forum: Plugins
In reply to: [Plugin: Job Manager] Widget – latest jobsAh, I see. Sorry, I missed that you were after help in getting your code working, too.
Try changing your
query_postsline to:query_posts('post_type=jobman_job&posts_per_page=5');Let me know how this goes.
Forum: Plugins
In reply to: [Plugin: Job Manager] Widget – latest jobsA job widget is already planned for version 0.6:
http://code.google.com/p/wordpress-job-manager/issues/detail?id=11
It seems your email landed in my Spam folder, I’ll set you up a translator account there.
Forum: Plugins
In reply to: [Plugin: Job Manager] Star Rating – remove not possible?You can change the rating, but you’re right, you cannot remove it. I’ll look at adding this in 0.6.
http://code.google.com/p/wordpress-job-manager/issues/detail?id=97
In your wp-admin, could you go to Pages -> Edit, click Quick Edit on Job Manager, and check the Template setting? Could you then compare it to a different page that is displaying correctly?
Forum: Plugins
In reply to: [Plugin: Job Manager] cant open resumes in new updateI was hoping you wouldn’t say that – a problem I only found out recently is that the automatic plugin updater deletes the plugin folder before installing the new version, which means that all previously uploaded resumes will have been deleted.
As of version 0.5.1, uploads are now stored in the wp-content/job-manager/uploads/. If you have backups, you can put them there to restore functionality.
If you don’t have backups, the uploads are unfortunately lost. My apologies for the inconvenience. :-/
Forum: Plugins
In reply to: [Plugin: Job Manager] cant open resumes in new updateA couple of questions:
– Are you referring to the resumes of candidates who applied before or after the new update?
– Did you use WordPress’ automatic plugin updater, or did you download and install the new version manually?Is the date display disabled by your theme? If so, check that the “Job Manager” page has the same template as all your other pages.
Forum: Plugins
In reply to: [Plugin: Job Manager] Translation deleted on updateI just discovered this problem recently myself – the WordPress automatic update deletes the plugin directory before unzipping the new version.
I’ve setup a copy of GlotPress at http://translations.pento.net/ to centralize translation work for Job Manager – if you’d like an account there so I can include your work in the public distribution, please contact me at gary@pento.net. 🙂
I’m hoping to get the editor working for the next feature release, version 0.6, due out in a few weeks.
Forum: Plugins
In reply to: [Plugin: Job Manager] Activation Fatal ErrorIn that case, you’ll need to manually create these directories. Note that they’re sub-directories of wp-content, not wp-content/plugins.
You’ll also need to make these directories writeable by the web server. I’m not sure how you can achieve this on Yahoo Hosting, they will probably have a help page to do this.
Forum: Plugins
In reply to: [Plugin: Job Manager] Activation Fatal ErrorI’m not sure if deactivating WordPress on Yahoo hosting will remove the database or not. If it does, then this should be fine.
You no longer need to make that edit, I have since fixed that bug.
Forum: Plugins
In reply to: [Plugin: Job Manager] Listing directory of applications, user profile pagesDo you have the post object that the application is stored in? The data is stored in the metadata:
$metadata = get_post_custom( $post->ID );The Job Manager related metadata items will have the name ‘datan‘, n being a number. You can use this as follows;
$options = get_option( 'jobman_options' ); foreach( $options['fields'] as $id => $field ) { if( ! array_key_exists( "data$id", $metadata ) ) continue; echo $field['label'] . ': '; if( is_array( $metadata["data$id"] ) ) echo $metadata["data$id"][0]; else echo $metadata["data$id"]; echo '<br />'; }Forum: Plugins
In reply to: [Plugin: Job Manager] Activation Fatal ErrorI think the easiest way at this point would be to clean out the Job Manager settings and perform a fresh install. You should do the following:
– Go to the Edit Pages area of wp-admin, and delete the “Job Listing” page.
– Go the the Plugins area of wp-admin, and “Deactivate” then “Delete” Job Manager.Then, you need to look for the following in the database:
– In wp_options, check that the row with option_name=”jobman_options” is deleted
– In wp_posts, find all posts with post_type LIKE “jobman%”, and delete them.
– In wp_term_taxonomy, find all rows with taxonomy=”jobman_category”, and delete them. Take note of the term_id associated with each row you delete.
– In wp_terms, delete the rows with term_id corresponding to the list of term_ids you found above.If you don’t find any matching rows in the above steps, just move onto the next one.
Once this is complete, you can install a fresh copy of Job Manager (current version is 0.5.1).
Please let me know how this goes, or if you run into any further problems.
Also, I will be improving the uninstall process in the next feature release, so you don’t have do this DB work in event of a full uninstall being required.
Forum: Plugins
In reply to: [Plugin: Job Manager] Blank page after Add a jobAh, I see what’s happening. This will only occur if you click the “New Job” item on the side menu, it works correctly if you click the “List Jobs” item, then the “New Job” button at the top.
I’ll release a new version soon with this fixed. Thanks for the feedback!