Logout link only if logged in

Permalink
Hi!

How can i add an logout link to my theme which is visible only if user is allready logged in, so that visitors wouldnt see any login links?

Thanks.

 
madesimplemedia replied on at Permalink Best Answer Reply
madesimplemedia
You could add some php that only shows an area if logged in:

<?php 
   global $u;
   $u = new User(); 
   if ($u->isLoggedIn()) { 
            $a = new GlobalArea('Log Out'); $a->display();
   } 
?>


Then add this addon in that area:https://www.concrete5.org/marketplace/addons/loginlogout-link...