Hello,
I have a form that should be visible and open for submissions within a defined time frame. The example on how to make the form invisible on a specific date is useful, but I have not enough PHP knowledge to use that example to create a similar function to make the form available on a specific date. The point is that nobody are allowed to submit anything before that date.
Can anyone please help me?
Thanks
Tore Johnny




February 22, 2012 at 9:39 am
You need to copy and paste the "Close the form on a specific date" example on this page into your theme functions.php or a new plugin:
http://formidablepro.com/knowledgebase/frm_display_form_action/
But instead of the date being greater than the date, switch it to less than.
if(time() > strtotime('2012-05-15')){
if(time() < strtotime('2012-05-15')){
February 22, 2012 at 10:32 am
That simple. :-) Thank you
Topic closed.