Hi @bihungba1101
Have you checked the First name and Last name values in the WordPress default edit user page (e.g.: /wp-admin/user-edit.php?user_id=30 where 30 is the ID of the user )?
Since I have just checked an account that I registered with Nextend Social Login, and the First name and Last name appeared fine for me there.
However please note that, we only store the First name and Last name, if the registration itself happens with Nextend Social Login. If you try to login to an existing account, or link a social media account to an existing account, then we won’t modify the First name and Last name fields, as that way people could never change their names, as anytime they would login would social login, the name coming from social login would override the name that the users set for themselves on your site.
In that case if you meant the first name and last name fields of BuddyBoss/BuddyPress itself, then as I mentioned in the othe topic, those name fields are just custom fields that don’t have any relationship to the first names, last names, and nicknames that WordPress uses ( so their data is not mapped ).
There are ways to store data for those custom fields, but the problem is that those fields can be anything. So a field that you use as Last name, could be a phone number field on the website of somebody else. If we would try to store the name into those custom fields, then we could end up storing the data into the wrong field and that’s why we don’t have such integration.
If you would like to fill up those fields with data, then you should insert a record into the <wp-preffix>bp_xprofile_data database table of BuddyBoss with the corresponding field ID. To find out the way you could do that, I would suggest you to get in touch with the Developers of BuddyBoss, or if you have some developer knowledge, then you could inspect their codes.
Once you managed to find the way you can insert records into that table, you should hooke a function to our “nsl_register_new_user” action, and in that action you should store the first name and last name of the registered user to the database table of BuddyBoss.
In our developer documentation you can learn more information about the “nsl_register_new_user” action and their parameters:
Best regards,
Laszlo.