Support

Account

Home Forums ACF PRO Change the style based on the day and time Reply To: Change the style based on the day and time

  • If you are still looking for an answer, what form is this? Are you talking about the WP registration form or some other form.

    But basically

    
    $date_time = strtotime(get_field('your_date_time_field', false, false));
    if (time() > $date_time) {
      ?><style>.form-registration {display:none;}</style><?php 
    }