This guide describes the steps to integrate Jobylon job postings with PLAYipp. Follow these steps to retrieve, set up, and upload the Jobylon widget to PLAYipp.
Limitations
This solution only works with PLAYport HD (PPHD)
Follow these steps to get your widget up and running
- Contact your contact person or support at Jobylon to obtain a piece of code to embed Jobylon.
-
Create a new text file:
Use a text editor (e.g., Notepad or Visual Studio Code) to create a new HTML file.
Paste the following code into the file:
<html>
<head>
<title>Jobylon</title>
<meta name="viewport" content="width=960">
</head>
<body>
Paste your script here
</body>
</html> -
Paste the Jobylon script:
Paste the embed code you received from Jobylon between <body> and </body>. The code should now look like this:
(NOTE the embed code varies from case to case and this is just an example)
<html>
<head>
<title>Jobylon</title>
<meta name="viewport" content="width=960">
</head>
<body>
<div id="jobylon-jobs-widget"></div>
<script type="text/javascript">
/*** CONFIGURATION ***/
var jbl_company_id = 1742;
var jbl_version = 'v2';
var jbl_filters = {
show_filters: 1
};
/*** DON'T EDIT BELOW THIS LINE ***/
(function() {
var el = document.createElement('script');
el.src = 'https://cdn.jobylon.com/embedder.js';
el.type = 'text/javascript';
el.async = true;
d = (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]);
d.appendChild(el);
})();
</script>
</body>
</html> -
Save the file: Save the file with any name but give it the extension
.html
. Example:jobylon.html
. -
To test that everything works as it should, open the HTML file in a browser on your computer.
Double-click the HTML file: When you open the file in your browser, you should be able to see the Jobylon widget and the job postings that you have filtered and designed. -
Now that the file is complete and tested, it's time to upload it to PLAYipp. You can follow this guide: Publish HTML files