Plugin / Greenhouse Job Board

Brown Bag Marketing

Frequently Asked Questions (FAQ)

Yes, this plugin requires that you have a greenhouse.io account. You will need to enter your url token as well as your API key.
If you desire inline forms rather than iframe forms, to submit applications to the greenhouse API the web server must support cURL since it is used for the proxy data submission as to not expose your API key to the public.
Yes, you can add your own custom CSS on the plugin options page.
This plugin connects to Greenhouse to retreive data and saves it locally in your WordPress database for a while so your site will load faster and not have to wait for Greenhouse API everytime your job board loads. Go to the settings page and check your cache expiration setting to see how long this temporary or transient data will be stored locally, and also notice the checkbox option to clear the cache. To force fresh data to your site, check this box and save changes.
Yes, there is a php filter in place for after the job title on the full job listing template. It is called: ghjb_single_job_template_after_title. Place a function with this name into your theme functions file or your theme plugin php and you may add content following the title of each job. Note that this refers to the full job display and not the job list display. Here’s a simple example usage: add_action(‘ghjb_single_job_template_after_title’, ‘add_note_to_single_job_template’, 10, 1); function add_note_to_single_job_template ($html){ $html .= '

Job Subtitle

'; $html .= 'Share this job with friends'; return $html; }
You can add your own content or edit the job excerpt on the job board via a javascript hook. This works much in the same way as a WordPress hook, but it’s javascript based rather than php. Simply add a javascript function to your site named: ghjb_excerpt_filter and it will automatically be called and executed as the plugin creates the job board list. Here’s an example use to trim the excerpt to 100 characters and add an ellipsis.: //greenhouse job board plugin js filters function ghjb_excerpt_filter(content) { var short_content_start = 0; var short_content_end = 100; var new_content = content.substring(short_content_start, short_content_end) + ' …'; return new_content; }
You can customize the inline forms, but not the iframe forms. There is a hook available for use via javascript to filter the fields on inline forms called ghjb_questions_filter. Call it in your theme or plugin javascript. It will receive as parameter the array of questions as returned by the greenhouse api for each job and your filter must return a similarly formatted array of questions, but you may rearrange the fields or change labels field types, etc. Here’s an example use that customizes some fields: function ghjb_questions_filter( questions ) { //find field indexes var remove_index, coverletter_index, resume_index; for ( var i = 0; i < questions.length; i++){ if ( questions[i].label === 'Resume' ) { resume_index = i; } if ( questions[i].label === 'Cover Letter' ) { coverletter_index = i; } if ( questions[i].label === 'Remove Me' ) { remove_index = i; } } //remove field questions.splice(remove_index,1); //set default file_input type to textarea rather than file upload questions[coverletter_index].fields.reverse(); //change label questions[coverletter_index].label = "Updated Cover Letter Label"; //move to last field var coverletter_question = questions.splice(coverletter_index, 1); questions.push ( coverletter_question[0] ); var resume_question = questions.splice(resume_index, 1); questions.push ( resume_question[0] ); //return customized questions array return questions; }
There is a javascript hook you can add to your theme code that will work here. The function is ghjb_after_thanks and is called after the thank you message is processed and displayed on the page.

Ratings

5
4 reviews

Rating breakdown

Details Information

Version

2.7.3

First Released

20 Mar, 2015

Total Downloads

5,967

Wordpress Version

3.0 or higher

Tested up to:

4.9.12

Require PHP Version:

-

Tags

Contributors

Languages

The plugin hasn't been transalated in any language other than English.

DIRECTORY DISCLAIMER

The information provided in this THEME/PLUGIN DIRECTORY is made available for information purposes only, and intended to serve as a resource to enable visitors to select a relevant theme or plugin. wpSocket gives no warranty of any kind, express or implied with regard to the information, including without limitation any warranty that the particular theme or plugin that you select is qualified on your situation.

The information in the individual theme or plugin displayed in the Directory is provided by the owners and contributors themselves. wpSocket gives no warranty as to the accuracy of the information and will not be liable to you for any loss or damage suffered by you as a consequence of your reliance on the information.

Links to respective sites are offered to assist in accessing additional information. The links may be outdated or broken. Connect to outside sites at your own risk. The Theme/Plugin Directory does not endorse the content or accuracy of any listing or external website.

While information is made available, no guarantee is given that the details provided are correct, complete or up-to-date.

wpSocket is not related to the theme or plugin, and also not responsible and expressly disclaims all liability for, damages of any kind, arising out of the use, reference to, or reliance on, any information or business listed throughout our site.

Keep Leading Your Followers!
Share it for them.