Gary Pendergast
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Job Manager] Reinstallation of latest job-managerWhat in particular isn’t working? You don’t need to delete anything to upgrade – the upgrade function will make any necessary changes.
Okay, I think I found the problem. WP was treating Job Manager like it was the front page, so there was a good chance it would use index.php as the template.
I think I’ve fixed this in 0.6-alpha, I’ll include it in a 0.5.5 release if that is necessary, otherwise 0.6-beta should be out in the next few days, stable release in a week or so. I’d appreciate it if you could download the 0.6-beta release when it comes out, and let me know if you still see the problem.
Thanks for the feedback!
Forum: Plugins
In reply to: [Plugin: Job Manager] Adding job entry form to frontendIt’s a bit tricky, as everything is being generated on the fly – it’s all customisable, so there has to be a bunch of processing done to produce everything you see.
If you’re interested in adding this on, I’d first of all recommend using the SVN trunk, I’ve made a bunch of changes for 0.6, a lot of the stuff you’d need to touch has changed.
To be honest, it’ll be tricky at best. Some of the code here is pretty ugly, I need to make it nicer to dive into.
Forum: Plugins
In reply to: [Plugin: Job Manager] Adding job entry form to frontendAre you referring to the ability to post new jobs without going into wp-admin? If so, I currently have this planned for version 0.7.
http://code.google.com/p/wordpress-job-manager/issues/detail?id=16
Forum: Plugins
In reply to: [Plugin: Job Manager] Selecting a category when apply for a jobI can see the usefulness of this feature. I’ll add it in for version 0.6.
http://code.google.com/p/wordpress-job-manager/issues/detail?id=103
Forum: Plugins
In reply to: [Plugin: Job Manager] current_page_item styling issueIt’s a Job Manager issue, I’m able to reproduce the same problem with a different theme. I’ll fix it for version 0.6, thanks for the bug report!
Forum: Plugins
In reply to: [Plugin: Job Manager] Selecting a category when apply for a jobAhhh… now I understand what you’re after. Instead of sending them to
http://yoursite.com/jobs/apply/, send them tohttp://yoursite.com/jobs/apply/finance/. You can replace “finance” with the slug for any of the categories you’ve created, and the application will be assigned to that category.Forum: Plugins
In reply to: [Plugin: Job Manager] Selecting a category when apply for a jobAccording to this, the job is not assigned to any categories.
Could you open the job in wp-admin and check this?
Forum: Plugins
In reply to: [Plugin: Job Manager] Admin E-mail formattingThere have been many security fixes to PHP since version 4.3.9. See here for the changelog of the 4.x series:
http://php.net/ChangeLog-4.phpPlease note that all updates for PHP 4 ceased at the end of 2007 – there have been no security fixes since then. I would recommend your host upgraded to the latest PHP 5.2 release, for the best balance of new version and stable, well tested release.
To work around this problem, please try adding the following code to your
wp-config.phpfile:if( ! defined( 'PHP_EOL' ) ) define( PHP_EOL, "\r\n" );Forum: Plugins
In reply to: [Plugin: Job Manager] Admin E-mail formattingWhat version of PHP are you using?
PHP_EOL is a PHP constant that is used to make the email format properly on all platforms. However, it was introduced in PHP 4.3.10 and 5.0.2, so if you have an earlier version of PHP, you will need to upgrade.
Forum: Plugins
In reply to: [Plugin: Job Manager] How to put image on <td> that holds ‘apply now’ textFirst of all, don’t put the CSS in the Job Manager CSS files – it’ll be overwritten when you upgrade. Instead, you should add the following CSS to your theme CSS:
td.jobs-applynow a { background: url("/full/path/to/file.png") no-repeat center center transparent; text-indent: -9999px; display: block; }Note the
"/full/path/to/file.png", I would recommend putting the file in your theme’s images directory, so it would likely be"/wp-content/themes/your-theme/images/apply-now-button.png".Forum: Plugins
In reply to: [Plugin: Job Manager] Selecting a category when apply for a jobCould I get you to do the following:
jobman-display.php, line 980, you’ll see the following line:
$parentcats = wp_get_object_terms( $job->ID, 'jobman_category' );After this line, add the following two lines:
var_dump( $job ); var_dump( $parentcats );Once you’ve added these lines, submit an application for a job that has been assigned to a category. On the “Thank you for applying…” page, there should be a bunch of gibberish at the top. Please copy and paste this to here.
Forum: Plugins
In reply to: [Plugin: Job Manager] Filter applicationsThanks for the bug report.
There’s a problem with how WordPress filters custom categories, I’ve written a workaround which will be in version 0.6.
If you’d like to apply it to your installation in the mean time, here is the changeset for the fix:
http://code.google.com/p/wordpress-job-manager/source/detail?r=201Note that there have been significant changes to jobman-conf.php in trunk, so you have to apply this patch, not just download a fresh copy of jobman-conf.php.
Forum: Plugins
In reply to: [Plugin: Job Manager] Selecting a category when apply for a jobHrrm, it’s supposed to add the categories of the job being applied for to the application – is this not happening?
Forum: Plugins
In reply to: [Plugin: Job Manager] No mail being sent after latest upgradeIn version 0.5.1, I changed the location of the upload/icons directories, from:
wp-content/plugins/job-manager/uploads
wp-content/plugins/job-manager/iconsto:
wp-content/job-manager/uploads
wp-content/job-manager/iconsI moved them outside of the plugins directory, after I found that the automatic plugin updater deleted the plugin directory before installing a new version.
Please confirm that you’re looking at the correct directory – the error message makes it a little difficult to spot that it has moved.