add_action( 'template_redirect', 'custom_redirect_after_purchase' ); function custom_redirect_after_purchase() { if ( ! is_wc_endpoint_url( 'thanks' ) ) return; wp_redirect( 'https://aras-market.com/thanks' ); exit; }