Search code examples
craftcms

How to check if user is logged in and display the user name


I want to check if the user is currently logged in. If the current user is logged in I wanna display hello with a user name. How can I do that!?


Solution

  • {% if currentUser %}
    {{ currentUser.friendlyName }}
         {% endif %}