Little update.
I’ve found the file class-login-logout-register-menu-public.php and I’ve changed the string:
$content = $content != ” ? $content : __( ‘Profile’, ‘login-logout-register-menu’ )
to this one:
$user_info = get_userdata( get_current_user_id() );
$content = $content != ” ? $content : __( ‘Welcome, ‘, ‘login-logout-register-menu’ ) . $user_info->display_name;
After done that, I’ve checked the home page but nothing changed, still showing “profile”. Also I don’t know why, but if I try to edit the .php from wordpress, it keeps loading and desn’t update the file. I had to do this by ftp.
Thanks anyway for your attention and I look forward to hearing back from you soon.