Gary Pendergast
Forum Replies Created
-
Same as the above solutions, you can add a
heightvalue to your CSS.Ie:
table.job-apply-table textarea { width: 100%; height: 100px; }CSS doesn’t have the ability to set the number of rows in the textarea.
Forum: Plugins
In reply to: [Job Manager] register for site not conformingReally? An F grade, because I didn’t put classes on
<form>tags, which are technical tags, not semantic or layout tags?There are classes you can use, instead of clobbering every form on the site:
.jobman_app_form form, .jobman_app_form label {clear: both;}Forum: Plugins
In reply to: [Job Manager] [Plugin: Job Manager] Salary Sort OrderIt currently sorts the salaries alphabetically, instead of numerically.
I’ll look at fixing this in a later version.
I’m going to be looking at re-writing a bunch of this code in the next major release – it’s kind of ugly.
In the mean time, you can manually delete old results by running the following queries on your database:
DELETE pm FROM wp_postmeta pm LEFT JOIN wp_posts p ON p.ID=pm.post_ID WHERE p.post_type='jobman_app' AND p.post_date<'2011-01-01'; DELETE FROM wp_posts WHERE post_type='jobman_app' AND post_date<'2011-01-01';Adjust the date in each query for the oldest application you want to delete.
Forum: Plugins
In reply to: [Job Manager] [Plugin: Job Manager] Translation of monthsThanks for the bug report! A fix for this will be in the next release.
Thanks for the bug report! A fix for this will be in the next release.
Forum: Plugins
In reply to: [Job Manager] Front end – new jobIt’s currently not possible to do this. I’m planning on adding this ability in the next major release, but I don’t have a release date for that – Job Manager is on a bit of a break while I work on some other projects.
Forum: Plugins
In reply to: [Job Manager] changing "apply now" text to a buttonIn wp-admin, go to Job Manager -> Settings -> Display Settings -> Job Templates.
Change the “Apply Now” text inside the
[job_apply_link]shortcode to be the appropriate img tag, instead.Forum: Plugins
In reply to: [Job Manager] Paginate Applications Page… its crashing my computerI agree, this would be very useful. Unfortunately, it’s not quite that simple. I’m planning on putting a fair bit of work into changing around the guts of the Application list, to take advantage of new features in WordPress 3.1 and 3.2, which will give you pagination.
Forum: Plugins
In reply to: [Job Manager] Way to search Job Manager post title / description contentI discussed this over email, but for anyone playing along at home:
Job Manager stores all of its data as Post metadata in the wp_postmeta table. Because it also has the customisable fields, the meta_key names aren’t based on what the data being stored is.
The long and short of it is, I’m not aware of any search plugins that would play nicely with this format. It’s possible to do a bit of a hack job that just works with your particular job fields, but having a search that works with any format will take some more effort.
Forum: Plugins
In reply to: [Job Manager] List of archived JobsThis currently isn’t possible. Interesting idea, though. I’ve created a feature request for this.
http://code.google.com/p/wordpress-job-manager/issues/detail?id=317
Forum: Plugins
In reply to: [Job Manager] Category and job links displaying home page templateWhich multilingual plugin? Job Manager doesn’t play particularly nicely with this type of plugin, it seems, as it does some stuff in a non-standard way that it really shouldn’t. (Hangover from older versions of WordPress.)
I can hopefully write a quick hack to get them to work together, and I can look at improving Job Manager further down the track.
Forum: Plugins
In reply to: [Job Manager] [Plugin: Job Manager] No data collectedThanks for the bug report! I’ve written a fix for this, it’ll be in the next release of Job Manager.
Forum: Plugins
In reply to: [Job Manager] [Plugin: Job Manager] Uploaded CV SecurityThe issue here is that Job Manager uses WordPress’ built in media system, which has no concept of private/public files. (This is being discussed here: http://core.trac.wordpress.org/ticket/17255 )
The problem with implementing a fix for this is that there is no lightweight way to authenticate a user.
While I understand the concern, I think this can be considered a low risk for the time being. Guessing the filename of a specific CV (as opposed to a random CV) would be quite tricky, and would only yield information that is already usually publicly available. (Ie, through LinkedIn.)
Forum: Plugins
In reply to: [Job Manager] [Plugin: Job Manager] Lists of jobsWow, this thread is getting out of control.
I’m the guy who wrote Job Manager, so I’ll weigh in on this now.
@cke11y: I’m sorry to hear you’re having a hard time with Job Manager. While my friends are welcome to refer to me as a “tw@t”, I think name calling strangers on the internet isn’t really the way to go. You might feel that Job Manager isn’t working for you, but there are plenty of people who are using it successfully.
@farshidk: I am not obligated, informally or otherwise, to provide support for Job Manager. I have provided free support in the past, because I had the time for it. I don’t at the moment, because I don’t have spare time. If you require prompt support, I’m quite happy to give you my contracting rates.
@praveenius: Thank you for posting what you’ve done, (even though it was removed per forum rules). I’d eventually like to see the Job Manager community grow until it’s able to support itself.
While Job Manager is moderately popular, it currently isn’t popular enough to support itself. For those of you in this thread who are after help with customising the look of the Job List, I’ve written up a brief tutorial here:
http://pento.net/2011/02/20/job-manager-howto-customizing-the-job-list/
If you have any questions after reading that, I’d appreciate it if you posted them as comments on that post – it will help if people come across through Google and have the same questions.