• It was working and now it has stopped …. I had set up a GDPR field with a timestamp field, “SERVER:REQUEST_TIME” in as the default value to record the Unix timestamp of the submission. Now the Consent Date and Time field is not being updated. The IP address is.

    Because I have had several other problems this week I added an a new field set up as Consent Timestamp, hidden with default value of “SERVER:REQUEST_TIME”, but neither of these fields are updated.

Viewing 1 replies (of 1 total)
  • Plugin Author xnau webdesign

    (@xnau)

    Thanks for this, I didn’t realize that was happening.

    I’ve got the fix for this in the next release, but you can fix it yourself now.

    In the plugin file participants-database/classes/PDb_Base.php on line 848, you’ll find:

    if ( is_string( $global[$name] ) ) {

    change that to:

    if ( is_string($global[$name]) || is_int($global[$name]) ) {

    and the timestamp value will show up.

Viewing 1 replies (of 1 total)

The topic ‘date time stamp’ is closed to new replies.