2017-03-06 2 views
0

woocommerce 플랫폼의 리뷰에 표시되는 이름을 변경하고 싶습니다. 나는 약간 정보를 찾아 냈다 그러나 나는 WordPress에 새롭다 아무도는 응답이있는 것을 보이지 않는다. 여기에 뭔가를 찾을 수 있었지만 설치 세부 사항이없는 링크가 있습니다.리뷰 변경 Woo-commerce Store의 표시 이름

이 부분을 변경하려면 어디서 어떻게해야하는지 알고 싶습니다. 감사.

다음은 내가 발견 한 링크입니다.

https://silicondales.com/tutorials/woocommerce-tutorials/woocommerce-change-review-author-display-name-username/

나는 이름 체인저라는 플러그인을 추가하고 그것은 나를 계정의 사용자 이름을 변경할 수 있지만 검토 이름을 업데이트하지 않습니다. 여기

지금의 일부 이미지입니다 (2017년 3월 6일)

사용자가 편집 된 사용자 이름과 구성 방법의 스냅 샷 : 나는 그것을 알아 낸 좋아

Snapshot of how user is configured with edited username

답변

0

. 자식 테마가 없으면 코드를 functions.php 파일에 게시해야합니다. 하나를 설정하는 것이 좋지만 나는 아직하지 않았습니다. 그리고 저는 이것을 먼저 고정시키고 싶습니다. 다음은 필요한 항목의 스냅 샷입니다.

add_filter('get_comment_author', 'my_comment_author', 10, 1); 
function my_comment_author($author = '') { 
// Get the comment ID from WP_Query 
$comment = get_comment($comment_ID); 
if (!empty($comment->comment_author)) { 
if($comment->user_id > 0){ 
$user=get_userdata($comment->user_id); 
$author=$user->first_name.' '.substr($user->last_name,0,1).'.'; // this is the actual line you want to change 
} else { 
$author = __('Anonymous'); 
} 
} else { 
$author = $comment->comment_author; 
} 

return $author; 
} 

하면 사용자 정보를 업데이트해야합니다 편집기> 모양에서 바닥 또는 사용자 정의-functions.php 또는 functions.php 페이지에 텍스트의 다음 블록을 추가합니다.

Missing Sections from the Original Question