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