On a member profile, there is a gauge that allows you to see your percentage match with the current user in real time.
You can hide this gauge on member profile with a little bit of CSS.
1 |
.bp-user #item-header .hmk-percentage { display: none !important; } |
Hide only for logged-out users
The gauge is blurred (with a fake number) for non logged members.
If you want to hide this fake gauge for logged-out users you can add this CSS:
1 |
.bp-user #item-header a.hmk-percentage { display: none !important; } |