is there any way to modify the MY Account name to be shown as the login user name on the menu?
i am able to make it show the user name on the dashboard but unable to make it show on the header menu of woo commerce here is the part where i want to display the user name instead of my account
thanks,
Yes,
Look for the place in your theme's files for the where the account text is placed. Change it to
if ( is_user_logged_in() ) {
global $current_user;
get_currentuserinfo();
echo $current_user->display_name;
}
else {
echo 'Login to your account';
}
Also see how to show user's username when logged into a wordpress site?