Re: Changing default INDEX?
@bpuser44 It’s really simple. I did it as one page template that was set as the home page. Then, in the page template you just add this code:
if ( is_user_logged_in() ) {
//Content you want people to see if they’re logged in
} else {
//Content you want people to see if they’re not logged in
}