Viewing 11 posts - 1 through 11 (of 11 total)
  • Question

    #68470
    @heavenlygiftedpeople

    Hi,

    How do I remove the name that shows up on my profile in black? It’s already on my profile photo so I want to remove it from under my photo.

    How do I remove the name in yellow that’s highlighted in the attachment?

    Thanks!

    Answers

    #68831
    @heavenlygiftedpeople

    Any Update on this??

    #68865
    @vapvarun

    Hi @heavenlygiftedpeople

    These are small customization you can easily use your developer or 3rd party service to do them
    For small customization you can also use https://codeable.io/

    Regards
    Varun Dubey

    #68953
    @heavenlygiftedpeople

    Cant I just use CSS to hide the profile name? Would that be possible?

    Thanks

    #68997
    @anve

    Hi @heavenlygiftedpeople,

    You can also use following css , apply it in child theme’s custom css .

    
    #buddypress #item-header .profile-info h2.user-nicename {
      display: none;
    }
    

    Regards
    Anve

    #69048
    @heavenlygiftedpeople

    Anve,

    That worked perfectly!

    One problem, now the City is showing up scrunched under the Profile Picture. Do you have CSS to hide the City as well? or a code to simple move it to the right of the profile photo?

    See attached. Thanks so much!!
    Travis

    #69122
    @anve

    Hi @heavenlygiftedpeople,

    Please place the following code in child theme’s custom css . This will move the city text downwards , hence will look perfect on every screen size .

    
    body.bp-user.projects #buddypress #item-header .profile-info span.profile-field {
        margin-top: 15px!important;
    }
    

    Regards
    Anve

    #69177
    @heavenlygiftedpeople

    Hi,

    This CSS worked for when you are viewing members profile pages but when you are viewing your profile logged in the city is still scrunched up and not separated from the photo. Do you have CSS I could enter that would move the city down when viewing my logged in profile? See attached.

    Thanks!!
    Travis

    #69285
    @anve

    Hi @heavenlygiftedpeople,

    Please place the following code in child theme’s custom css .

    
    .xprofile #buddypress #item-header .profile-info span.profile-field {
      margin-top: 15px;
    }
    

    Regards
    Anve

    #69591
    @heavenlygiftedpeople

    That worked! Thanks!

    #69685
    @anve

    Hi @heavenlygiftedpeople,

    Great 🙂 , I’ll close this topic now .

    Regards
    Anve

Viewing 11 posts - 1 through 11 (of 11 total)
  • The question ‘Remove Name’ is closed to new replies.