Gary Pendergast
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Job Manager] Job manager and WPMLI’ve just released 0.7-beta6, which has a fix for WPML compatibility in it – could get you to download this onto your test system, and make sure it works properly with your site?
Forum: Plugins
In reply to: [Plugin: Job Manager] Listing categories in seperate pageUnfortunately, I don’t have a list of everything available – the code is a bit spaghetti-ish, so it isn’t really friendly for taking chunks and calling them from other code.
I’m planning on adding a proper hook/filter-based API in version 1.0, due out later this year.
In the mean time, I can help you out if there are specific things you want to do, though I can’t promise the functions will stay stable.
Forum: Plugins
In reply to: [Plugin: Job Manager] Just upgraded, can’t figure out the app templates errorThanks for the bug report, I’ve fixed this for the 0.7-beta6 release.
Forum: Plugins
In reply to: [Plugin: Job Manager] Feature Request (Widget)For anyone else interested in this idea, I’m planning on adding it in version 0.9.
http://code.google.com/p/wordpress-job-manager/issues/detail?id=149
Forum: Plugins
In reply to: [Plugin: Job Manager] Email formattingNot at the moment, it only sends plain text emails. The upcoming 0.7 release adds the ability to restrict which fields are included in the emails.
What formatting ability are you after in particular?
Forum: Plugins
In reply to: Reinstalling Job ManagerYou’ll need to go into cPanel, open up phpMyAdmin, go to your wordpress database, click the SQL button, and run that query.
Forum: Plugins
In reply to: Reinstalling Job ManagerAs a workaround, you can run the following query on your WordPress database:
DELETE FROM wp_options WHERE option_name='jobman_options';Forum: Plugins
In reply to: Reinstalling Job ManagerSorry about that, there was a problem with the uninstall routine that didn’t delete the options.
I’ve fixed this in 0.7-beta4, which will be available in about 15 minutes. (Please don’t install 0.7-beta3, it’s broken.)
Forum: Plugins
In reply to: [Plugin: Job Manager] HELP! Urgent problemThis is a bit strange. Could I get you to run the following query on your WordPress database:
SELECT * FROM wp_options WHERE option_name='jobman_options';Email it to me at gary@pento.net.
Forum: Plugins
In reply to: [Plugin: Job Manager] HELP! Urgent problemJust to confirm, is this showing on the page you get next to URL path, under Job Manger->Admin Settings?
Forum: Plugins
In reply to: [Plugin: Job Manager] HELP! Urgent problemThis code should go in the Job List Template section.
Forum: Plugins
In reply to: [Plugin: Job Manager] Job manager and WPMLTo the WPML peeps:
Given a page ID, is there a nice way of getting the possible URLs with language code added? Something like
icl_get_languages()with the ability to give any page ID would do the job.Forum: Plugins
In reply to: [Plugin: Job Manager] Job manager and WPMLAh, I see the problem. Job Manager does some custom rewrite rule handling, so it’s not working with the ‘nl’ in there. I’ll write a workaround for this, and add it in 0.7.
Forum: Plugins
In reply to: [Plugin: Job Manager] HELP! Urgent problemI’ll investigate the uninstall options problem you’re seeing.
In the mean time, you can do a proper uninstall/re-install by performing the following steps:
– Deactivate Job Manager
– Run the following queries in your WordPress database:DELETE FROM wp_options WHERE option_name='jobman_options'; DELETE FROM wp_posts WHERE post_type LIKE 'jobman%';– Activate Job Manager
Forum: Plugins
In reply to: [Plugin: Job Manager] Remove Apply Now linkHTML is fine to add to the Individual Job Template. Ie, you can add:
<a href="http://othersite.com/application/form">Apply Now</a>