-
- Redirect to a Menu Item After Form Submission
- Tracking Form Lead Source
- Show a Form Only to Logged-In Users
- How to Increment a Count on Each Form Submission
- Adding an “Other” Option
- Adding a Unique ID to Each Form Submission
- Show or Hide Form Fields Based on User Joomla User Group
- Disabling Browser Autocomplete for Form Fields
- Scroll the Page to the Top When a Long Form is Submitted
- Display Submissions Count for a Specific Form
- Populate Drop Down, Radio Buttons or Checkboxes with a CSV File
- Automatically Delete Submissions Older Than X Days
- Silently POST Submitted Data to Any API or URL
- Automatically Save Each Submission to a JSON file
- Create a Custom Login Form
- Auto-Populate Fields with Article Data
- Add a placeholder text to a Dropdown field
- Create Multilingual Forms in Joomla
- Redirect User to a URL After Form Submission
- Importing and Exporting Forms
- Exporting Form Submissions
- Display Convert Forms in a popup
-
- How to Create a Quiz Form
- Show Confirmation Popup After Submission
- Using the Conditional Content Shortcode in Convert Forms
- Copy Value From One Field to Another
- Submission Tasks
- Exporting Form Submissions with a Webhook URL
- Conditional Fields
- PDF Generator
- Input Masking
- Calculations
- Populate Fields Using Query String
- Smart Tags
-
- Minimum Time to Submit
- Restrict Form Submissions Based on IP
- Enforcing a Custom Password Policy in Convert Forms
- Add Cloudflare Turnstile to your Joomla Form
- Implement the Iubenda Consent Database in Joomla with Convert Forms
- Add Custom Validations to Fields and Forms
- Add Math Captcha to your Form
- Prevent a Field From Saving in the Database
- Add hCaptcha to your Form
- Enable Double Opt-in
- Allow Form Submissions in Specific Date Range
- Ensure a Unique Value is Entered Into a Field
- Block Form Submissions Containing Profanity (Bad Words)
- Block Email Addresses or Email Domains
- Honeypot
- Setting Up Google reCAPTCHA
- Create GDPR Compliant Forms
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 such as CSV.
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
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.
- In the Joomla backend, navigate to System → Manage → Language Overrides.
- Set the Language selector to your desired language (e.g., English (en-GB) — Administrator) and ensure Location is set to Administrator.
- Click New to create a new override.
- In the Language Constant field, enter:
DATE_FORMAT_LC5 - 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
- 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 & Time Field placed inside a form — each Date/Time field has its own dedicated date format setting configured within the field's settings
DATE_FORMAT_LC5is 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 usesDATE_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.