Skip to content

Instantly share code, notes, and snippets.

@BurlesonBrad
Created January 8, 2018 19:41
Show Gist options
  • Save BurlesonBrad/c05cdecff28e5a8b9f970127be0adb99 to your computer and use it in GitHub Desktop.
Save BurlesonBrad/c05cdecff28e5a8b9f970127be0adb99 to your computer and use it in GitHub Desktop.
Custom Thank You Page Redirect
//* TEMPORARY thank you page for LAUNCH
add_action( 'lifterlms_order_process_success', 'llms_thank_you_redirect', 9, 1 );
function llms_thank_you_redirect( $order ) {
wp_redirect( 'https://woocamp.com/launch-thank-you' );
exit();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment