Monzo Forum Ratings ( Next to usernames )?

Can someone explain what “1” entails, along with “2” “3” and “4” ?

I’ve been on ages and lots more posts than some people with 3 ? Not bothered but just wondering

4 is Coral Crew and other moderators (staff will have a :monzo: icon but are 4 under the hood)

3 is Regular (as I would be if there was no crowdfund investor icon)

1 is New Member

1 Like

I would guess that while you have more posts you stop in less regularly so your rating dropped back to 2 or 1

1 Like

The number represents the users Discourse trust level. Discourse is the forum software that Monzo uses.

There is a full explanation of each number here:

And to quote:

Trust Level Breakdown
5 Likes

Key passage for OP

2 Likes

Ok thanks :slight_smile:

I don’t like this change :frowning:

What are my eyes missing

dave

Your 3 should be on the corner of your avatar

2 Likes

It is :eyes:

Android using Chrome

Bring back platform parity!

2 Likes

Chrome on Windows for me with it broken. Hmmmm

2 Likes

Same, tried on works laptop, just can’t do a screenshot on that to post.

1 Like

Don’t worry I’m getting the same weird placement. Looking to see if I can revert it back :wrench: :computer:

4 Likes

I’m having no issues with wrong placements on safari.

Ditto. Safari on MacOS here too, very much broken!

Not sure I trust you with a virtual spanner set :face_with_monocle: did you do something to break it… Or was it a tweak from the forum provider

1 Like

Ouch.

No changes from me - seems to be from the forum provider.

1 Like

Yeah seems to be an issue impacting potentially desktop browsers.

On my phone it seems to be completely fine. Nothing has changed in the settings and tried a refresh. Will keep everyone in the loop :curly_loop:

4 Likes

If you are able to add custom CSS anywhere in the admin then adding the following will fix it:

.tl-avatar-flair {
    position: relative;
}
.group-investors .tl-avatar-flair, .group-Monzo .tl-avatar-flair {
    display: none;
}

How to make CSS changes on your site - howto / admins - Discourse Meta

Edit:
Just by playing around you can fix it and show group flairs as well as user flairs by adding this:

.tl-avatar-flair {
    position: relative;
}

.topic-avatar .avatar-flair, .avatar-flair-preview .avatar-flair, .user-card-avatar .avatar-flair, .topic-map .poster .avatar-flair, .user-profile-avatar .avatar-flair, .user-image .avatar-flair, .latest-topic-list-item .avatar-flair {
    top: 0;
}

1 Like