Theme editor

Solution XenForo Need Help with Rank System on XenForo Forum

ramooo19

First Liner
User
Thread owner
Hello,

I’d like to disable the existing rank system on my XenForo forum and use only a single custom animated (GIF) rank instead.
Do you have any suggestions or recommendations on how I can achieve this?

Thanks in advance for your help.
 
Hello
Your topic has been reviewed, formatted, and approved.

Regarding your question:
We also use the user rank system in a *disabled/muted* mode.
If you don’t like the multiple rank display style, you can use the same settings shown below.

When users purchase paid memberships, the rank with the higher “Display Priority” (defined in the Paid Membership settings) will be the only one shown — this ensures only a single rank (e.g., VIP/Gold) is visible.

1749767373169.webp


Quick access link:
`/admin.php?options/groups/users/`

If you’d like to use the same CSS rank style we’re using, here’s the content from our `extra.less` file:

Less:
/* Forum Rank Styles */
.yonetici {
    position: relative;
    display: inline-block;
    background: url(/data/assets/style_properties/rank.webp) no-repeat left center, #ea223a;
    color: #ffffff;
    font-size: 17px;
    font-weight: 500;
    padding: 6px 16px 6px 70px;
    border-radius: 6px;
    line-height: 15px;
    letter-spacing: 0.2px;
    text-align: center;
    overflow: hidden;
}
.yonetici::before {
    content: "";
    position: absolute;
    top: 0;
    left: -8px;
    width: 50px;
    height: 100%;
    background: url(/data/assets/style_properties/icon.webp) no-repeat center center;
    background-size: 50px;
    transform: scaleX(-1);
}
/* Forum Rank Styles */

1749767396918.webp
 
Back
Top