• Hello,

    I am using woocommerce. After checkout I want a Thank Page to come up. I have created one already I’m just unsure what to do next. Thanks

Viewing 1 replies (of 1 total)
  • Dear kellyjeanine

    you can do that adding this code in the file functions.php located in wp-content/themes/your-theme-name/:

    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( 'https://www.exmple.com/your-thank-page/' );
    		exit;
    	}
    }

    Enjoy……!

Viewing 1 replies (of 1 total)
  • The topic ‘How To Get A Thank You' page redirect after checkout’ is closed to new replies.