by Brown Bag Marketing
4.2 (5 reviews)
Greenhouse Job Board
Plugin to pull a job board from greenhouse.io via their API.
Tested up to WP 4.9 (Current: 6.9)
v2.7.3
Current Version v2.7.3
Updated 7 years ago
Last Update on 03 Apr, 2018
Synced 15 hours ago
Last Synced on
Rank
#12,805
—
No change
Active Installs
200+
-20.6%
KW Avg Position
40.8
+0.3 better
Downloads
9.8K
+2 today
Support Resolved
0%
—
No change
Rating
84%
Review 4.2 out of 5
4.2
(5 reviews)
Next Milestone 300
200+
300+
1,306
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 70 more installs to reach 300+
Rank Changes
Current
#12,805
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
4.2
5 reviews
Overall
84%
5
4
(80%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
1
(20%)
Tracked Keywords
Showing 4 of 4| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| greenhouse | 3 | — | Tag | 16 hours ago |
| careers | 9 | — | Tag | 16 hours ago |
| job board | 44 | — | Tag | 16 hours ago |
| resume | 107 | — | Tag | 16 hours ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 2.7.3
- Last Updated
- Apr 03, 2018
- Requires WP
- 3.0+
- Tested Up To
- 4.9
- PHP Version
- N/A
- Author
- Brown Bag Marketing
Support & Rating
- Rating
- ★ ★ ★ ★ ☆ 4.2
- Reviews
- 5
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowFrequently Asked Questions
Common questions about Greenhouse Job Board
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. Server requirements 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 .= '<h2>Job Subtitle</h2>'; $html .= '<a href="#facebook-share-url">Share this job with friends</a>'; 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.