You can easily add jobs to your website using our iFrame option. This will allow candidates to apply directly on your website - resulting in a seamless application process where the candidate never has to leave your site.

This is a simple piece of code, which can be styled using CSS.

This will allow candidates to apply directly on your website - resulting in a seamless application process where the candidate never has to leave your site.

Benefits

  • Creates a job listing that matches your branding.
  • Easy to set up.
  • Automatically updates the list of open jobs whenever you create or edit a job in HireHive.
  • Allows you to customise the display of your job posts (e.g. by category or location) to help candidates quickly find the jobs that are relevant for them.

Default Layout

The default layout lists all published jobs. This is ordered chronologically by publish date.

var defaultConfig = {
    grouping: '',
    category: '',
    container: '#default-layout'
};

Grouped Layout

If you have a lot of open roles then you can group them. HireHive gives you the option to group jobs either by category or by country.

var groupedConfig = {
  grouping: "category", // 'country'
  category: "",
  container: "#grouped-layout",
};

Partial Listing

If you need to display published jobs from a certain category or country, you have that option with HireHive.

var partialConfig = {
    grouping: "",
    category: "",
    countryCode: "IE",
    container: "#partial-layout"
};