Sep 12, 2016 7:02 am
Friends, how could hidden ADMIN'S REAL name?
Look at the image below.
Appreciate, Thanks!
1 Reply
Sep 12, 2016 7:51 am
Currently the only way is changing nicename in wp_users database using SQL query mentioned below. We'll add an option to change nickname in future releases.
UPDATE `wp_users` SET `user_nicename` = 'newnickname' WHERE `user_nicename` = 'soonadmin_bravo';
Don't forget to change wp_ table prefix if it doesn't match. Also the newnicname to whatever you want.