Conditional Start Page

  1. set “Start page” in Generate tab to be function name like “startPage”
  2. In “Custom Script” > “Global Code” add custom function name “startPage” manually like
function startPage () {
	global $Security;
	if (!$Security->isLoggedIn()) {
		return 'login';
	} else {
		return 'MonthlyMemberTrafficLightList';
	}
}