Skip to content

Instantly share code, notes, and snippets.

@monecchi
Forked from woogist/functions.php
Last active April 1, 2016 05:35
Show Gist options
  • Save monecchi/ca54cc0fedf314a58cbf92e7e497f7c5 to your computer and use it in GitHub Desktop.
Save monecchi/ca54cc0fedf314a58cbf92e7e497f7c5 to your computer and use it in GitHub Desktop.
// Redirect customers to another page with your personal thoughts and thank you message instead of woocommerce default thank you page.
add_action( 'template_redirect', 'wc_custom_redirect_after_purchase' );
function wc_custom_redirect_after_purchase() {
global $wp;
if ( is_checkout() && ! empty( $wp->query_vars['order-received'] ) ) {
wp_redirect( 'http://www.yoururl.com/your-page/' );
exit;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment