10-10-2018, 08:52 AM
(10-10-2018, 03:27 AM)KyleJ1445566 Wrote: Hey,
I am trying to get the some of the content on the index page for logged in users only and I am having difficulty. I have supplied a screen shot of the content I wish for only logged in users.
Any help would be appreciated and thank you in advance.
I'm not seeing a screenshot, but basically what you have to do is to wrap the two sections (logged in vs logged out) in this if/else statement
PHP Code:
if(isset($user) && $user->isLoggedIn()){
//this content is seen by logged in users
}else{
//this content is seen by logged out users.
}