The word Name can be changed on the profile fields admin screen. Simply edit it !
Dashboard > User > Profile Fields (wp-admin/users.php?page=bp-profile-setup)
What do you call blanks ? Your field names are all aligned left and the width seems to be equal for all. You can reduce it via your child-thme style.css.
Note that you will anyway get different blank space as the width will be adjusted to the longest word. Ie. ABCDEF will go from left to right border, but ABC will left a blank space on the right.
Thank you for helping to change the name of the field. Somehow I missed this setting.
As for the “empty marks around the field name,” that I mean that the code is written in the form:
<label for = “field_1”>
Name
<span class = “bp-required-field-label”> </ span>
When I want to do that instead of the label was a placeholder, the empty spaces in the code (between the first and second line and the second and third row) are visible in the input.
It looks like:
[___Name________]
instead
[Name___________]
This can be changed somehow?
This can be done via css. Search for ::before and :after pseudo-elements here.
But shame… 🙂
I do not know why I had not thought of such an obvious solution.
Thanks for the help.