Skip to content

Instantly share code, notes, and snippets.

@MjHead
Last active December 19, 2019 11:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MjHead/66bf31e429f14f9224771f15ccd3b569 to your computer and use it in GitHub Desktop.
Save MjHead/66bf31e429f14f9224771f15ccd3b569 to your computer and use it in GitHub Desktop.
<?php
add_action( 'jet-engine/forms/booking/notification/insert_post', function( $notification, $manager ) {
if ( ! empty( $manager->data['_date_field'] ) ) {
$manager->data['_date_field'] = strtotime( $manager->data['_date_field'] );
}
}, 0, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment