Automatically convert ACF date / datetime fields to timestamp on post save.
Add the following code and change field keys to correspond to the date / datetime field keys from your website
add_filter('acf/update_value/type=date_time_picker', 'my_update_value_date_time_picker', 10, 3);
add_filter('acf/update_value/type=date_picker', 'my_update_value_date_time_picker', 10, 3);
function my_update_value_date_time_picker( $value, $post_id, $field ) {