Hey Josiah, I feel like this is my answer to you every time: there’s no way to do this by default but you can use a filter!
The filter name is yikes-mailchimp-MERGE-TAG-default-value. Replace MERGE-TAG with your field’s name… you know this by now!
add_filter( 'yikes-mailchimp-MERGE-TAG-default-value', 'yikes_mailchimp_default_date_to_today', 10, 3 );
function yikes_mailchimp_default_date_to_today( $default_value, $field, $form_id ) {
// This is the date format mm/dd/yyyy
return date( 'm/d/Y' );
}
Cheers,
Kevin.
You’re correct, I should have been able to figure that out.
Anyway, it works fine. Thanks!