Is there any way to have the date and time that a user submitted the form sent in the email I receive? I'm using v3 beta 2 (upgrading soon)
Also, is there a way to redirect them to a thank-you "page" that isn't visible in any menus?
Thanks for any help!
Also, is there a way to redirect them to a thank-you "page" that isn't visible in any menus?
Thanks for any help!
Is there any way to have the date and time that a user submitted the form sent in the email I receive?
yes, you can add a hidden filed with HTML and inside the value attribute add this :
value="<?php echo date("Y-mm-dd H:i:s"); ?>"
2nd one, add the article to a hidden menu!😉
Cheers
Max
sorry to be overly nooobish, but could you please be a bit more specific on where this hidden field is created and where I put it? (and how it ends up in the email)
thanks, this is really cool.
thanks, this is really cool.
inside the form HTML code box with all other code there :
at your template, write : {time}
let me know!
Max
<input type="text" name"time" value="<?php echo date("Y-mm-dd H:i:s"); ?>">
at your template, write : {time}
let me know!
Max
This topic is locked and no more replies can be posted.