Support

Account

Home Forums Backend Issues (wp-admin) Getting Gravity Forms date field into ACF date field? Reply To: Getting Gravity Forms date field into ACF date field?

  • Is there any update on this item? Just encountered it myself.

    Edit: Nevermind! Found a solution:

    function acf_smart_dates($field) {
      if ($field['value']) {
        $field['value'] = date('Ymd',strtotime($field['value']));
      }
      return $field;
    }
    add_filter('acf/prepare_field/type=date_picker','acf_smart_dates');

    From: http://blog.room34.com/archives/5597