//* Redireccionar página de gracias por su compra
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://tudominio.com/tu-pagina-de-gracias-por-su-compra/' );
exit;
}
}
Redireccionar página de gracias por su compra
Marcar el enlace permanente.

