I tried to use this function to create timestamp as a substitute of entry date field
add_filter(“gform_field_value_timestamp”, “unixtime”);
function unixtime($value){
return time();
}
but it’s not working as a timestamp, because the value is always same (not updated date and time) if the form is submitted from other devices.
this is what I got for each entry (submitted at different time on different devices):
1591760744 (10/06/2020 10:45:44)
1591760744 (10/06/2020 10:45:44)