NamelessMC

Internet Explorer

Internet Explorer is not supported. Please upgrade to a more modern browser.

devincean

Member

Feed

There are no wall posts here yet.

About

Registered:
over 2 years ago
Last Seen:
about 1 month ago
Profile Views:
480
Minecraft
devincean

Latest Posts

over 2 years ago
portal page default home

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');

over 2 years ago
portal page default home

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?