Woo Commerce我的帐户名称修改了吗?

时间:2018-08-03 06:02:55

标签: php woocommerce

有什么方法可以修改“我的帐户”名称以在菜单上显示为登录用户名?

我能够在仪表板上显示用户名,但无法在woo commerce here is the part where i want to display the user name instead of my account 的标题菜单上显示用户名

谢谢

1 个答案:

答案 0 :(得分:0)

是的

在主题文件中查找放置帐户文本的位置。将其更改为

if ( is_user_logged_in() ) {
  global $current_user;
  get_currentuserinfo();
  echo $current_user->display_name;
} 
else {
  echo 'Login to your account';
}

另请参见how to show user's username when logged into a wordpress site?