I created a basic HTML splash page with a button that links to the join page. Sounds simple enough, but it doesn't work. When clicking the button, the splash page simply reloads. I am thinking it is an issue with the modified inc/design.inc.php file, which was modified to redirect non-members to the splash page. The following code was added to inc.design.php. If I remove it, the splash page functions like I want it to...but the site will not redirect guests to the splash page.
(!isMember()) {
header('Location: ' . BX_DOL_URL_ROOT . 'splash.php');
exit;
}
Is there a simple work-around to:
1) Have the splash page load for non-members
and
2) Have the join.php page (along with other sub-pages I link to on the splash page) load when clicked
...or am I just missing something obvious?
