-
- Managing Form Submissions
- Searching and Filtering Submissions
- Submission Context Tracking
- Customizing Submission Columns
- Editing Submissions
- Deleting Submissions
- Importing Submissions
- Exporting Submissions
- Exporting Submissions with a Webhook URL
- Tracking the User's IP Address
- Tracking the User's Country
- Disable Submission Storage
- Auto-Delete Old Submissions
- Auto-Save Each Submission to a JSON file
- Increment a Count on Each Submission
- Add a Unique ID to Each Submission
-
- Email the Person Who Filled Out the Form
- Send an Email Only When a Checkbox Is Checked
- Attach the Submission PDF to Emails
- Send Email Based on Drop Down Selection
- Send Different Email Content Based on Form Responses
- Set up Auto-Responder Emails
- Styling Emails with CSS
- Sending Plain-Text Alternative Body Emails
- Troubleshooting Email Delivery
- Tracking Sent Emails
- Resending Emails
-
- Browser Autocomplete for Form Fields
- Redirect to a Menu Item After Form Submission
- Show a Form Only to Logged-In Users
- Adding an “Other” Option
- Show or Hide Form Fields Based on User Joomla User Group
- 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
- Silently POST Submitted Data to Any API or URL
- 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
- Display Convert Forms in a popup
-
- Does Convert Forms Use Cookies?
- Minimum Time to Submit
- Restrict Form Submissions Based on IP
- Enforcing a Custom Password Policy in Convert Forms
- Add ALTCHA Proof of Work to your Joomla form
- 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.