Internet Explorer
Internet Explorer is not supported. Please upgrade to a more modern browser.
So maybe i missed this but why is the portal.tpl setup as the default home page rather then index.tpl and is there a setting to change this?
nvm found fix to this in my \modules\Core\pages\index.php
if anyone else has this issue just change.
// Home page or portal?
$cache->setCache('portal_cache');
$use_portal = $cache->retrieve('portal');
if($use_portal !== 1) require('home.php');
else require('portal.php');
to
// Home page or portal?
$cache->setCache('homepage');
$use_portal = $cache->retrieve('portal');
if($use_portal !== 1) require('home.php');
else require('portal.php');