Skip to main content

How to Remove a Profile Picture

Am I missing something? I'm doing some final tests before launching my community for members, and I just realized that I can't remove a profile picture. When I click the upload button, I can upload a new image, but what if someone simply wants to remove theirs entirely?

Also, I found that the β€œComplete your profile (60%)” button can be hidden using this CSS:

.el-button--danger {

display: none;

}

Is it safe to use this method?

Thomas Oates

I posted a similar question about the profile image but haven't gotten any responses yet so I still have the same question. https://community.wpmanageninja.com/portal/space/community-meta/post/remove-avatar-image-and-not-re

Chris

Thomas OatesΒ It's weird that this option isn't available. I can already see people getting frustratedβ€”especially those who want to cancel their membership and would prefer to remove their profile picture before leaving.

Thomas Oates

ChrisΒ Agreed. They do have an option to remove the profile cover image so it is a bit surprising a similar option wasn't included to remove the profile picture/avatar. I added it as a feature request here: https://community.wpmanageninja.com/fluentcommunity-roadmp/#/idea/850/

Thomas Oates

This is probably safer to remove the profile complete button as using just el-button--danger may hide similar buttons in other places.

.fhr_page_actions div.fcom_profile_complete_btn_wrapΒ {

  1. display: none !important;

}

Chris

Thomas OatesΒ Thank you so much for this!