우커머스 결제 완료 후 리다이렉트

#checkout #체크아웃 #woocommerce #redirect

“https://example.com/” 부분을 원하는 url로 변경해서 사용할 것

add_action( 'woocommerce_thankyou', 'kayart_thank_you_page_redirect', 10, 1 );
function kayart_thank_you_page_redirect( $order_id ){
    $order = wc_get_order( $order_id );
    $url = 'https://example.com/';

    if ( ! $order->has_status( 'failed' ) ) {
        wp_redirect( $url );
        exit;
    }
}

댓글 달기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다

위로 스크롤