Skip to content

Instantly share code, notes, and snippets.

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 jesseeproductions/3dd5d3a1cbb3cfb4e61013577f6e338b to your computer and use it in GitHub Desktop.
Save jesseeproductions/3dd5d3a1cbb3cfb4e61013577f6e338b to your computer and use it in GitHub Desktop.
Change Delay of Ticket Creation to Now
/**
* Change Delay of Ticket Creation to Now
*/
add_filter( 'tribe_ticket_generation_delay', 'jp_filter_delay' );
function jp_filter_delay( $timestamp ) {
return date( 'm/d/Y h:i:s a', current_time( 'timestamp' ) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment