---
title: "User Account - Product Common Guides"
description: "Use the {user} Smart Tags to retrieve information about the currently logged-in user. This Smart Tag can return the value of any property from the Joo"
url: "https://www.tassos.gr/docs/common/features/smart-tags/user"
date: "2026-05-10T00:22:22+00:00"
language: "en-GB"
---

[ Home ](https://www.tassos.gr/index.php?option=com_content&view=category&layout=blog&id=24&Itemid=1088) / [ Product Common Guides ](https://www.tassos.gr/index.php?option=com_content&view=category&id=89) / [ Features ](https://www.tassos.gr/index.php?option=com_content&view=category&id=96) / [ Smart Tags ](https://www.tassos.gr/index.php?option=com_content&view=category&id=107)

#  User Account

Use the {user} Smart Tags to retrieve information about the currently logged-in user. This Smart Tag can return the value of any property from the Joomla User object as long as you know the property's name.

 ```
{user.USER_PROPERTY}
```

Below is a list of this category's most popular Smart Tags.

## [{user.id}](#user-id)

Returns the ID of the user.

## [{user.name}](#user-name)

Returns the name of the user.

## [{user.firstname}](#user-firstname)

Returns the first name of the user.

## [{user.lastname}](#user-lastname)

Returns the last name of the user.

## [{user.login}](#user-login)

Returns the username of the user.

## [{user.email}](#user-email)

Returns the email address of the user.

## [{user.registerDate}](#user-registerdate)

Returns the registration date of the user.

## [{user.groups}](#user-groups)

Returns the IDs of the user groups comma-separated. Eg: 1,2,5.

## [{user.groupTitles}](#user-grouptitles)

Returns the titles of the user groups comma-separated. Eg: Public, Registered

## [{user.authLevels}](#user-authlevels)

Returns the IDs of the user access levels comma-separated. Eg: 1,2,6

## [{user.authLevelTitles}](#user-authleveltitles)

Returns the titles of the user access levels comma-separated. Eg: Public,Registered,Special

## [Custom Fields](#custom-fields)

To output a custom field value associated with the currently logged-in user, use:

 ```
{user.field.NAME}
```

Replace NAME with the name (not the label) of your custom field. For instance, if you have a custom field named age:

 ```
{user.field.age}
```

You can access additional properties of a custom field by appending the appropriate property name after the field name.

 ```
{user.field.NAME.rawvalue}
{user.field.NAME.id}
```

For advanced usage, including subforms, field labels and disabling content plugins check the full guide: [Using Custom Fields in Smart Tags](https://www.tassos.gr/docs/common/features/smart-tags/custom-fields)

## [Notes](#notes)

The following rules apply:

- All Smart Tags in this set will return an empty string if the user is not logged in.
- For security purposes, the “password” property can’t be accessed.

 Last updated on Jun 20th 2025 09:06

## Schema

```json
{
    "@context": "https://schema.org",
    "@type": "BreadcrumbList",
    "itemListElement": [
        {
            "@type": "ListItem",
            "position": 1,
            "name": "Home",
            "item": "https://www.tassos.gr"
        },
        {
            "@type": "ListItem",
            "position": 2,
            "name": "Home",
            "item": "https://www.tassos.gr/docs"
        },
        {
            "@type": "ListItem",
            "position": 3,
            "name": "Product Common Guides",
            "item": "https://www.tassos.gr/docs/common"
        },
        {
            "@type": "ListItem",
            "position": 4,
            "name": "Features",
            "item": "https://www.tassos.gr/docs/common/features"
        },
        {
            "@type": "ListItem",
            "position": 5,
            "name": "Smart Tags",
            "item": "https://www.tassos.gr/docs/common/features/smart-tags"
        },
        {
            "@type": "ListItem",
            "position": 6,
            "name": "User Account",
            "item": "https://www.tassos.gr/docs/common/features/smart-tags/user"
        }
    ]
}
```

```json
{
    "@context": "https://schema.org",
    "@type": "Article",
    "mainEntityOfPage": {
        "@type": "WebPage",
        "@id": "https://www.tassos.gr/docs/common/features/smart-tags/user"
    },
    "headline": "User Account",
    "image": {
        "@type": "ImageObject",
        "url": "https://www.tassos.gr/"
    },
    "publisher": {
        "@type": "Organization",
        "name": "Tassos",
        "logo": {
            "@type": "ImageObject",
            "url": "https://www.tassos.gr/https://www.tassos.gr/media/brand/logo-text.png"
        }
    },
    "author": {
        "@type": "Person",
        "name": "Tassos Marinos",
        "url": "https://www.tassos.gr/docs/common/features/smart-tags/user"
    },
    "datePublished": "2025-05-07T09:36:46+03:00",
    "dateCreated": "2025-05-07T09:36:46+03:00",
    "dateModified": "2025-06-20T09:00:45+03:00"
}
```
