Created
January 8, 2018 19:41
-
-
Save BurlesonBrad/c05cdecff28e5a8b9f970127be0adb99 to your computer and use it in GitHub Desktop.
Custom Thank You Page Redirect
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//* 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