Career and Job Board

Create job postings for your open positions. Show the postings on your website and let people easily apply with their CV.

Features

  • Ultimate customizations directly in Wix editor
  • AI powered job generator
  • Automatic CV parsing
  • AI candidate scoring
  • Fully translatable

Demo

How to Use the app

1 – Install the app

2 – [Optional] Change the design of Apply Page

3 – Add Job List widget on your website

4 – Configure your job listings

5 – You are ready to start accepting candidates

API

APIs is a way developers can build on top of our plugin. There are several functions and events. These allow developers to extend functionality to for example show avaiable jobs in unique way and much more.

Job List

getJobs function

getJobs function lets you fetch the current active jobs. This can be used to create your own custom list of jobs.

Example:

	const jobs = await $w("#jobList").getJobs();

	const jobTitles = jobs.map(job => job.title);

	$w("#bannerText").text = jobTitles.join(', ');

openJobDetail function

openJobDetail function opens the page with job details and form that lets visitors apply for the listed job.

Example:

	$w("#btn-apply").onClick(() => {
		$w("#jobList").openJobDetail(jobs[0]);
	})

Apply Page

JobViewed event

The event is fired when a visitor opens the job detail.

Example:

export async function applyPage_jobViewed(event) {
    const { job } = event.data;
    console.log('Job viewed', job);
}

JobApplied event

Event that is fired when a visitor finishes their application.

Example:

export async function applyPage_jobApplied(event) {
    const { job, candidate } = event.data;
    console.log('Job applied', job, candidate);
}