Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.

how to edit panel profile into

I want to modify profile info in panel.
First of all, I'd like to remove edit my account and Change my password.
And if possible, I want to change text such as change my picture.
Please let me know how I edit them.
Thanks

Comments

  • the easiest way to hide or remove links is to use jquery or css to remove the elements you don't want. Use firebug or your developer tools and add css to your custom.css, add js via themehooks or via a plugin. See the various plugins aboutme, ignore user, etc for examples on profile mods.

    for changing text - you generally do that with definitions. There are many posts on that.

    I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.

  • I can edit text of profile info. But I don't still remove 'edit my account' and 'change my password'. How can I remove this link or hide in css? I cannot find 'EditAccountLink' and 'PasswordLink' to hide in style css.

  • you need to add missing element to your custom.css

    If you don't find the element you need in custom.css - you simply add it.

    e.g.

      .EditAccountLink, .PasswordLink {
       display:none;
       }
    

    I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.

  • Thanks

  • To edit or remove those using css:

    
    body.Profile.PanelInfo li.Popup.PictureLink a{
    display:none;
    }
    body.Profile.PanelInfo li.Popup.ThumbnailLink a{
    display:none;
    }
    body.Profile.PanelInfo li.Popup.PasswordLink a{
    display:none;
    }
    body.Profile.PanelInfo li.Popup.EditAccountLink a{
    display:none;
    }
    body.Profile.PanelInfo li.Popup.RemovePictureLink a{
    display:none;
    }
    
    

    to remove the entire edit profile panel

    
    body.Profile ul.PanelInfo {
    display: none;
    }
    
    
Sign In or Register to comment.