Gary Pendergast
Forum Replies Created
-
Forum: Plugins
In reply to: [Job Manager] [Plugin: Job Manager] LocalizationIn wp-admin, go to Job Manager -> Settings -> Display Settings, then edit the Job Templates.
Forum: Plugins
In reply to: [Job Manager] [Plugin: Job Manager] Remember ApplicationsNot at the moment. That’s still several major versions away.
Forum: Plugins
In reply to: [Job Manager] Job Fields Repearing on list templateBecause you’re specifying each
[job_field...]individually, you don’t need to specify the[job_field_loop]and `[/job_field_loop] tags. Remove them, and it should work fine.Also, remove the
[if_job_field]and[/if_job_field]tags. They’re not necessary.Forum: Plugins
In reply to: [Job Manager] Customizing Job ManagerYou might have some luck finding someone to do this custom work on the WP Jobs site:
http://jobs.wordpress.net/Forum: Plugins
In reply to: [Plugin: Job Manager] downloading attachmentsThe resume download problem is caused by your web server not being configured correctly for docx files. Solution is here:
http://wordpress.org/extend/plugins/job-manager/faq/It won’t show up in your normal feed, as that feed is just for blog posts. There is a feed of just jobs available at yoursite.com/jobs/feed/
Forum: Plugins
In reply to: [Job Manager] [Plugin: Job Manager] Job Listings PaginationSoon. 🙂
Here’s the diff for that fix:
http://code.google.com/p/wordpress-job-manager/source/diff?spec=svn438&old=408&r=438&format=unidiff&path=%2Fbranches%2F0.7.x%2Ffrontend-shortcodes.phpForum: Plugins
In reply to: [Job Manager] [Plugin: Job Manager] Job Listings PaginationThis is a bug in the current version – the next release will include a fix.
Forum: Plugins
In reply to: [Job Manager] Only changing Job Manager's languageNice one, thanks for the update!
Forum: Plugins
In reply to: [Job Manager] Only changing Job Manager's languageI’m not aware of any way to do this. Job Manager users WordPress’ built in translation handling functions, so it obeys the global language setting.
Someone more familiar than I with i18n may know of a workaround for this.
Leave the existing one, and add a new def to your CSS:
table.job-apply-table textarea { height: 100px; }Forum: Plugins
In reply to: are a sharethis option – a more info option – a file upload option possible?2. I’ve briefly discussed how to do conditional tags here.
3. Job Manager -> Settings -> Job Form Settings, add a new “File Upload” field.To force registration, go to Job Manager -> Settings, scroll down to the User Settings box, check the “Require User Registration” option.
Forum: Plugins
In reply to: [Job Manager] Un-Bolding the text in the Categories FieldThat isn’t bolded by default, so it’s possibly something in your theme? I’d suggest looking at the elements with Firebug and seeing what CSS is being applied to them.
Forum: Plugins
In reply to: [Job Manager] [Plugin: Job Manager] Salary Sort OrderThis is done in the
jobman_display_jobs_list()function, frontend-jobs.php. Line 45 (the default option of the switch) is the bit that adds the “sort by the field you selected” code.As this is done in MySQL, it may let you use
CAST()to convert it to an int, but I haven’t tested this and have no idea if it’d work.I’m not following – the normal text area is
input[type=text], the large text area istextarea. As long as you’re only applying theheightvalue totextarea, then it won’t affect the otherinputfields.Glad I could help!
(Donations always welcome. 😀 )