Skip to content

Instantly share code, notes, and snippets.

@wptravel
Created March 23, 2021 07:45
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 wptravel/7af5a1304c2e5a0b71e0497566bc902f to your computer and use it in GitHub Desktop.
Save wptravel/7af5a1304c2e5a0b71e0497566bc902f to your computer and use it in GitHub Desktop.
Filter to redirect URL after booking
function custom_thankyou_url( $url ) {
return 'http://yoursite.com/thankyou';
}
add_filter( 'wp_travel_thankyou_page_url', 'custom_thankyou_url' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment