JA JobBoard

New features of JA JobBoard - an ultimate Joomla-based recruitment component

The feature is available in version 1.0.6

What is Microdata and why you need it?

Microdata will enhance your Joomla site content with search engine optimized and it helps Joomla CMS to explain itself to the search engine using semantic information. You might be familiar with other name of microdata called Rich Snippets.

With microdata, your content will be 'restructured' with content’s type, author, rating, and other SEO friendly data. This will ensure a richer web browsing experience to users.

It's now ready in JA JobBoard

With the integration of Schema.org markups for job offers, JA Jobboard allows search engines and apps to easily parse the content. Here are the markups for JobPosting: http://www.schema.org/JobPosting.

Can I do it manually (without upgrading)?

Yes, you can. Please see the details of how we implement this feature in JA JobBoard below.

We changed the structure of 2 files: com_jajobboard\site\helper\jafunctions.class.php and com_jajobboard\site\views\jajobs\tmpl\jaview.php. Detailed changes are:

jafunctions.class.php

In this file, we add the following code to the bottom.

}
function jaSchemaProp($field, $type = 'JobPosting') {
	$prop = '';
	$field_type = is_object($field) ? @$field->field_type : '';
	$field_name = is_object($field) ? @$field->field_name : (string) $field;
	if($field_type == 'IMAGE') {
		$prop = 'image';
	} else {
		$aMap = array(
			'job_type' => 'employmentType',
			'job_code' => 'alternateName',
			'salary_max' => '',
			'effected_date' => 'datePosted',
			'salary_min' => 'baseSalary',
			'job_detail' => 'description',
			'created_date' => 'datePosted',
			'status' => '',
			'title' => 'title',
			'cat_id' => 'occupationalCategory',
			'salary_range' => '',
			'user_id' => 'hiringOrganization',
			'ordering' => '',
			'apply_type' => '',
			'distance' => '',
			'zipcode' => '',
			'currency' => '',
			'expiry_date' => '',
			'job_tags' => '',
			'views' => '',
			'is_hotjob' => '',
			'location_id' => 'jobLocation',
			'direct_url' => '',
			'mod_date' => ''
		);
		$prop = isset($aMap[$field_name]) ? $aMap[$field_name] : '';
	}
	if(!empty($prop)) {
		$prop = ' itemprop="'.$prop.'"';
	}
	return $prop;
}

jaview.php

<div id="ja-splitcontent">
<h2><?php echo $this->item->title; ?></h2>

Replace the above code with:

<div id="ja-splitcontent" itemscope itemtype="http://schema.org/JobPosting">
<h2 <?php echo jaSchemaProp('title'); ?>><?php echo $this->item->title; ?></h2>
<div class="moduletable job-box" style="clear: both">
<h3><?php echo JText::_('COMPANY_PROFILE')?></h3>

Replace the above code with:

<div itemprop="hiringOrganization" itemscope itemtype="http://schema.org/Organization" class="moduletable job-box" style="clear: both">
<h3 itemprop="name"><?php echo JText::_('COMPANY_PROFILE')?></h3>
<td width="80%"><?php echo $input;?>

Replace the above code with:

<td width="80%" <?php echo jaSchemaProp($field); ?>><?php echo $input;?>

The feature is available in version 1.0.6

Case study: An employer adds one job to your system, three candidates make application for that job. The job now has 3 applications. When the employer logs in, he can see those 3 application for his job, he can choose and select the qualified candidate for the position from the all these applications. The employer can also filter applications with options: Display all, Only selected applications, Only unselected applications.

select application

The feature is hard coded so there is no setting or configuration.

The feature is available in version 1.0.6

Feature description: When looking at an employer profile in the back-end, you can view all jobs of this employer.

From the back-end of JA JobBoard setting panel, go to "Job Board Manager >> Employers" then select the employer you want to view jobs. In the "Account details" tab, you will see a new field "Posted Jobs", hit the "View" button to see all jobs of the employer.

View jobs of an employer

The feature is available in version 1.0.6

Feature description: Admin can allow Guest to apply job. They don't have to be Jobseeker to apply.

To enable this option, in the JA JobBoard component back-end setting, go to "Subscription and Permission >> User Permissions >> Guest" then enable option "Apply job".

Allow guest to apply job

When viewing a job, they can hit "Apply" to apply the job then add info in the form so that employer can contact them.

Guest apply jobs

Important:

Please always take a full back-up before upgrading.

When upgrading any JoomlArt extension, we suggest you to use JA Extension Manager, it's safe and easy. It's FREE, you can download it at: http://www.joomlart.com/forums/downloads.php?do=cat&id=303. Here are the basic steps to upgrade with JA Extension Manager.

Set JoomlArt as your default service

From back-end, go to "Services Manager" then select JoomlArt as the default service.

select service to upgrade

Configure the account

As JA JobBoard is a premium product so you have to add your account from JoomlArt.com to the JA Extension Manager to upgrade. Hit the "Edit" button in the "JoomlArt" service then add your account.

Add account to upgrade

Upgrade extension

Now find JA JobBoard component, modules and plugin, check for new versions and upgrade.

upgrade extension

If you still have trouble, please find more details of JA Extension Manager at:

Userguide  Video tutorial