[WORDPRESS] Woocommerce 관리 주문 노트에 상점 관리자 사용자 이름 추가
WORDPRESSWoocommerce 관리 주문 노트에 상점 관리자 사용자 이름 추가
해결법
-
1.주문 노트에 주문을 업데이트 한 상점 관리자의 사용자 이름을 추가하려면 다음을 사용 :
주문 노트에 주문을 업데이트 한 상점 관리자의 사용자 이름을 추가하려면 다음을 사용 :
add_filter( 'woocommerce_new_order_note_data', 'filter_woocommerce_new_order_note_data', 10, 2 ); function filter_woocommerce_new_order_note_data( $args, $args2 ) { if( ! $args2['is_customer_note'] && is_user_logged_in() && current_user_can( 'edit_shop_order', $args2['order_id'] ) ){ $user = get_user_by( 'id', get_current_user_id() ); $args['comment_author'] = $user->display_name; $args['comment_author_email'] = $user->user_email; } return $args; }
코드는 function.php의 활성 자식 테마의 파일 (또는 활성 테마)에 간다. 테스트 및 작품 ..
from https://stackoverflow.com/questions/54734573/add-the-shop-manager-username-to-woocommerce-admin-order-notes by cc-by-sa and MIT license
'WORDPRESS' 카테고리의 다른 글
[WORDPRESS] Woocommerce 유럽 GDPR 추가로 체크 아웃 확인 확인란 (0) | 2020.11.16 |
---|---|
[WORDPRESS] 워드 프레스는 API를 통해 심포니 백엔드 서버 플러그인에서 파일을 업로드 할 수 없습니다? (0) | 2020.11.16 |
[WORDPRESS] 배송 방법에 따라 변경 Woocommerce 주문 상태 (0) | 2020.11.16 |
[WORDPRESS] 어떻게 woocommerce 사용자 정의 주문 상태를 추가하려면? (0) | 2020.11.16 |
[WORDPRESS] Woocommerce로 만들려면 체크 아웃 결제 필드를 저장하지 (0) | 2020.11.16 |