---
title: "Customizing Submission Date Created and Modified Formats - Convert Forms"
description: "In Convert Forms, every submission record has two system dates: Date Created, the date and time the submission was received, and Date Modified, the da"
url: "https://www.tassos.gr/docs/convert-forms/customize/customizing-submission-date-created-and-modified-formats"
date: "2026-04-24T16:41:26+00:00"
language: "en-GB"
---

[ Home ](https://www.tassos.gr/index.php?option=com_content&view=category&layout=blog&id=24&Itemid=1088) / [ Convert Forms ](https://www.tassos.gr/index.php?option=com_content&view=category&id=43) / [ Styling and Customization ](https://www.tassos.gr/index.php?option=com_content&view=category&id=71)

#  Customizing Submission Date Created and Modified Formats

In Convert Forms, every submission record has two system dates: **Date Created**, the date and time the submission was received, and **Date Modified**, the date and time the submission was last updated. These dates appear in various areas of the extension, including the Submissions list in the backend and in [export files](https://www.tassos.gr/docs/convert-forms/functionality/export-submissions) such as CSV.

## [How the Date Format Is Determined](#how-the-date-format-is-determined)

The format used to display these dates is controlled by Joomla's built-in `DATE_FORMAT_LC5` language string. This format is language-dependent and automatically adapts to the active backend language. For example:

 | Language | Default Format | Example Output |
|---|---|---|
| English (US) | Y-m-d H:i | 2026-03-02 14:30 |
| German (de-DE) | d.m.Y H:i | 02.03.2026 14:30 |

No additional configuration is needed — Convert Forms will automatically use the format appropriate for your site's active backend language.

## [Changing the Date Format](#changing-the-date-format)

If you want to use a custom date format, you can do so by creating a Joomla Language Override for the `DATE_FORMAT_LC5` string.

1. In the Joomla backend, navigate to System → Manage → Language Overrides.
2. Set the Language selector to your desired language (e.g., English (en-GB) — Administrator) and ensure Location is set to Administrator.
3. Click New to create a new override.
4. In the Language Constant field, enter: `DATE_FORMAT_LC5`
5. In the Text field, enter your desired date format using PHP date format characters. For example: `d/m/Y H:i`
    Save the override.

## [Notes](#notes)

- This article concerns only the submission's Date Created and Date Modified system dates. It does not affect the value stored or displayed by a [Date &amp; Time Field](https://www.tassos.gr/docs/convert-forms/fields/date-time) placed inside a form — each Date/Time field has its own dedicated date format setting configured within the field's settings
- `DATE_FORMAT_LC5` is not specific to Convert Forms. It is a global Joomla language string used across the entire Joomla installation. Overriding it will affect all areas of your site that rely on this format, including the Users component (e.g., the Last Visit date in the user list), other third-party extensions, and any other Joomla core area that uses `DATE_FORMAT_LC5`. If you only want to change the date format within Convert Forms without affecting the rest of your site, this is currently not possible through a language override, as the override applies site-wide.

 Last updated on Mar 2nd 2026 10:03

## 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": "Convert Forms",
            "item": "https://www.tassos.gr/docs/convert-forms"
        },
        {
            "@type": "ListItem",
            "position": 4,
            "name": "Styling and Customization",
            "item": "https://www.tassos.gr/docs/convert-forms/customize"
        },
        {
            "@type": "ListItem",
            "position": 5,
            "name": "Customizing Submission Date Created and Modified Formats",
            "item": "https://www.tassos.gr/docs/convert-forms/customize/customizing-submission-date-created-and-modified-formats"
        }
    ]
}
```

```json
{
    "@context": "https://schema.org",
    "@type": "Article",
    "mainEntityOfPage": {
        "@type": "WebPage",
        "@id": "https://www.tassos.gr/docs/convert-forms/customize/customizing-submission-date-created-and-modified-formats"
    },
    "headline": "Customizing Submission Date Created and Modified Formats",
    "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/convert-forms/customize/customizing-submission-date-created-and-modified-formats"
    },
    "datePublished": "2026-03-02T10:06:32+02:00",
    "dateCreated": "2026-03-02T10:06:32+02:00",
    "dateModified": "2026-03-02T10:09:28+02:00"
}
```
