---
title: "Feature: #92760 - Configurable timezone for DateViewHelper"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-92760-1733907198"
source: "Changelog/14.0/Feature-92760-ConfigurableTimezoneForDateViewHelper.rst"
typo3-version: "14.0"
typo3-major: 14
type: "feature"
issue: 92760
forge: "https://forge.typo3.org/issues/92760"
tags: ["Fluid", "ext:fluid"]
rendered: "2026-09-20T05:05:02+00:00"
---

# Feature: #92760 - Configurable timezone for DateViewHelper {#feature-92760-1733907198}

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

## Description {#description}

A new option `timezone` has been added to the
`\TYPO3Fluid\Fluid\ViewHelpers\Format\DateViewHelper` to render a date
with a provided time zone.

```html
<f:format.date format="d.m.Y g:i a" date="1640995200" /><br>
<f:format.date format="d.m.Y g:i a" date="1640995200" timezone="America/Phoenix" /><br>
<f:format.date format="d.m.Y g:i a" date="1640995200" timezone="Indian/Mayotte" />
```

will render:

```html
01.01.2022 12:00 am
31.12.2021 5:00 pm
01.01.2022 3:00 am
```

## Impact {#impact}

Using the new `timezone` option, it is now possible to set a specific
time zone for the `DateViewHelper`.
