[WORDPRESS] 등록되지 않은 경우에도 WooCommerce 감사합니다 페이지에 고객 상세보기
WORDPRESS등록되지 않은 경우에도 WooCommerce 감사합니다 페이지에 고객 상세보기
해결법
-
1.다음과 같은 코드가 아닌 로그인 한 사용자에 대해이 동작을 변경할 수 있습니다 :
다음과 같은 코드가 아닌 로그인 한 사용자에 대해이 동작을 변경할 수 있습니다 :
add_action( 'woocommerce_thankyou', 'adding_customers_details_to_thankyou', 10, 1 ); function adding_customers_details_to_thankyou( $order_id ) { // Only for non logged in users if ( ! $order_id || is_user_logged_in() ) return; $order = wc_get_order($order_id); // Get an instance of the WC_Order object wc_get_template( 'order/order-details-customer.php', array('order' => $order )); }
코드는 플러그인 파일도 function.php의 활성 자식 테마 (또는 테마)의 파일이나 간다.
테스트 및 작동합니다.
from https://stackoverflow.com/questions/47336029/show-customer-details-on-woocommerce-thankyou-page-even-if-not-registered by cc-by-sa and MIT license
'WORDPRESS' 카테고리의 다른 글
[WORDPRESS] 플러그인없이 "중계기 필드 만들기" (0) | 2020.11.16 |
---|---|
[WORDPRESS] 워드 프레스 아파치에서 VirtualAlloc 및 VirtualFree를 메모리가 부족, PHP 실패 (0) | 2020.11.16 |
[WORDPRESS] DB에 UI를 jQuery - 정렬 위치를 저장 (0) | 2020.11.16 |
[WORDPRESS] 사용자 정의 개발 스크롤의 성능 향상 (0) | 2020.11.16 |
[WORDPRESS] 단지 Woocommerce에서 특정 제품에 대한 설정 카트 항목 제품 생성 판매 가격 (0) | 2020.11.16 |