ElkArte Community

Extending Elk => Addons => Addons ideas and questions => Topic started by: Wizard on October 18, 2015, 10:16:30 am

Title: if ( logged in )
Post by: Wizard on October 18, 2015, 10:16:30 am
@anagnam  was talking about some indication to guests about logging to post. I wonder a popup modal would serve the purpose. Will an if function work ? How to check if someone is logged in or not ?
Title: Re: if ( logged in )
Post by: emanuele on October 18, 2015, 10:45:16 am
Depending were you are:
Code: [Select]
if ($context['user']['is_guest'])
or
Code: [Select]
if ($user_info['is_guest'])
will do the trick.