Hi Siegfred,
You would need a shortcode that returns the date
Here’s an example: http://botcrawl.com/display-date-and-time-on-wordpress-using-php-shortcodes/
And a plugin that provides one: https://wordpress.org/plugins/extra-shortcodes/
That being said, you don’t need this plugin at all – Contact Form 7 includes Special Mail Tags that will provide the data you need http://contactform7.com/special-mail-tags/
And of course any email you receive will be timestamped by the server, so this information is sort of redundant anyway.
Hope that helps,
Chris
Thanks very much for your expert et complete answer !
If I can abuse, I want ask you about the possibility to cumulate two shortocode in the same dynamic field ?
For summary I want to cumulate two data (example: counter and time) for generate an individual and unique data tag.
In my C7Form, i’ve insert this two dynamic fields, and it’s work very well, but my objective is to obtain in my database (contact form DB) one single value (ex: 12712:30, where 127 is the result of the counter shortcode and 12:30 is the result of the time shortcode).
It’s interesting for me for use CF7 like a Customer Ticket Support.
Best regards
The way to do that would be to create a shortcode that concatenates the value of your counter and time and returns that as a single value 🙂
Though generally keeping your data separate is the best solution – it makes things more flexible, and you can always concatenate it later.