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?
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
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.
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/
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Β {
- display: none !important;
}
Thomas OatesΒ Thank you so much for this!