The code provided in knowledge base by jamit.com in the link
https://www.jamit.com.au/support/index.php?_m=knowledgebase&_a=viewarticle&kbarticleid=189WILL NOT WORK.
If you use it you can see an error
Parse error: syntax error, unexpected '>' in /home/myaccount/public_html/xxxxx/include/themes/ooooo/employers-outside-header.php on line 5
Its because of simple php coding error, "?" is missed out at close of the php code.
Here is the right one below
<?php
if (strpos($_SERVER['PHP_SELF'], 'logout.php')!==false) { // is it on the logout.php page?
echo ' <META HTTP-EQUIV="Refresh" CONTENT="3; URL='.JB_BASE_HTTP_PATH.'">'; // redirect to the home page
}
?>
code must be placed in employers-outside-header.php and candidates-outside-header.php just above the HEAD as mentioned in the knowledgebase.
Hope its clear now.