i am trying to migrate date format php_function from ccv6 to cf7
setlocale(LC_TIME, 'es_ES.UTF-8');but in cf7 i try to use html_custom with php code without success
$fecha = $this->get('ventas_list.row.venta.fecha');
echo strftime("%d %b %y", strtotime($fecha));
<?php
$fecha=$this->get("ventas.fecha");
return $fecha;
?>