diff --git a/CHANGELOG-3.x.md b/CHANGELOG-3.x.md
index 1b0b9a0..966701f 100644
--- a/CHANGELOG-3.x.md
+++ b/CHANGELOG-3.x.md
@@ -5,5 +5,8 @@
### Added
- Added translations for cache configuration
+### Changed
+- Replace date_format filter with Twig date filter
+
### Removed
- Remove deprecated cache translations
\ No newline at end of file
diff --git a/tpl/tooltips.html.twig b/tpl/tooltips.html.twig
index 53bcff1..2720e1e 100644
--- a/tpl/tooltips.html.twig
+++ b/tpl/tooltips.html.twig
@@ -29,7 +29,7 @@ function popUp(evt,currElem)
if((x + popUpWin.offsetWidth) > window.innerWidth) {
x = offset.left - popUpWin.offsetWidth - 5;
}
-
+
popUpWin.style.top = Math.max(2,y)+'px';
popUpWin.style.left= Math.max(2,x)+'px';
popUpWin.style.visibility = "visible";
@@ -63,10 +63,10 @@ function popDown(currElem)
{{ translate({ ident: "TOOLTIPS_NEWARTICLE" }) }}
{{ translate({ ident: "TOOLTIPS_ARTICLEVAT" }) }}
-{{ translate({ ident: "TOOLTIPS_TIMEFORMAT" }) }}{{ "now"|date_format("%Y-%m-%d %H:%M:%S")|format_date("datetime", true) }}
+{{ translate({ ident: "TOOLTIPS_TIMEFORMAT" }) }}{{ "now"|date("Y-m-d G:i:s")|format_date("datetime", true) }}
{{ translate({ ident: "TOOLTIPS_ARTICLEREVIEW" }) }}
{{ translate({ ident: "TOOLTIPS_ARTICLESTOCK" }) }}
-{{ translate({ ident: "TOOLTIPS_ARTICLEDELIVERY" }) }}{{ "now"|date_format("%Y-%m-%d %H:%M:%S")|format_date("date", true) }}
+{{ translate({ ident: "TOOLTIPS_ARTICLEDELIVERY" }) }}{{ "now"|date("Y.m.d G:i:s")|format_date("date", true) }}
{{ translate({ ident: "TOOLTIPS_ARTICLETEMPLATE" }) }}
{{ translate({ ident: "TOOLTIPS_ARTICLEURLIMG" }) }}
{{ translate({ ident: "TOOLTIPS_ARTICLEUNITDESCRIPTION" }) }}
@@ -103,10 +103,10 @@ function popDown(currElem)
{{ translate({ ident: "TOOLTIPS_NEWARTICLE" }) }}
{{ translate({ ident: "TOOLTIPS_ARTICLEVAT" }) }}
-{{ translate({ ident: "TOOLTIPS_TIMEFORMAT" }) }}{{ "now"|date_format("%Y-%m-%d %H:%M:%S")|format_date("datetime", true) }}
+{{ translate({ ident: "TOOLTIPS_TIMEFORMAT" }) }}{{ "now"|date("Y.m.d G:i:s")|format_date("datetime", true) }}
{{ translate({ ident: "TOOLTIPS_ARTICLEREVIEW" }) }}
{{ translate({ ident: "TOOLTIPS_ARTICLESTOCK" }) }}
-{{ translate({ ident: "TOOLTIPS_ARTICLEDELIVERY" }) }}{{ "now"|date_format("%Y-%m-%d %H:%M:%S")|format_date("date", true) }}
+{{ translate({ ident: "TOOLTIPS_ARTICLEDELIVERY" }) }}{{ "now"|date("Y.m.d G:i:s")|format_date("date", true) }}
{{ translate({ ident: "TOOLTIPS_ARTICLETEMPLATE" }) }}
{{ translate({ ident: "TOOLTIPS_ARTICLEURLIMG" }) }}
{{ translate({ ident: "TOOLTIPS_ARTICLEUNITDESCRIPTION" }) }}