---
title: "Feature: #28243 - Introduce TCA option to disable age display of dates per field"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-28243"
source: "Changelog/7.5/Feature-28243-IntroduceTcaOptionToDisableAgeDisplay.rst"
modified: "2026-09-14T09:47:36+00:00"
---

# Feature: #28243 - Introduce TCA option to disable age display of dates per field

See [forge#28243](https://forge.typo3.org/issues/28243)

## Description

It is now possible to disable the display of the age (p.e. "2015-08-30 (-27 days)") of date fields in record
listings by a new TCA option.
The option is called `disableAgeDisplay` and can be set in the config section of a field.
It will be respected if the field has the type `input` and its eval is set to `date`.

### Example

```php
// disables the display of " (-27 days)" p.e.
$GLOBALS['TCA']['tt_content']['columns']['date']['config']['disableAgeDisplay'] = true;
```
