Open the dashboard and go to Settings.
Select the "Custom JavaScript" section.
Paste the following script into the "Scripts in the <head> section":
<script>
if (window.top === window.self) {
function addEyeAbleScripts() {
const scripts = [
"https://cdn.eye-able.com/configs/karriere.unternehmen.de.js",
"https://cdn.eye-able.com/public/js/eyeAble.js"
];
scripts.forEach(src => {
const script = document.createElement("script");
script.src = src;
script.async = true;
document.head.appendChild(script);
});
}
// Call the function to inject the scripts
addEyeAbleScripts();
}
</script>
In this script, you need to replace karriere.yourcompany.de with the URL of your careers page. This URL should already be stored in the Eye-Able dashboard.
Then save the changes and confirm the subsequent prompt.
After a short time, the widget will automatically appear on your career page, in the job postings, and on the application form.
If that is not the case, please check whether the URL used in the script matches the URL in the Eye-Able dashboard and on your career page exactly.

