Resource icon

User titles based on message count 1.1

No permission to download
This seems pretty interesting, sadly the user titles can't have banners like the usergroups, it's frustrating. :(
 
In admin control panel -> users -> trophy user titles

Add-on replaces trophy points with message count when calculating title.
 
I think its cached. admin control panel -> tools -> rebuild caches -> rebuild user cache
 
Sure you can. Just takes a single template edit, and a bit of CSS.
Thanks @Arty for this addon!
I tried styling User title, i added this code in Extra.css template , but I do not know how to have the same effect of banner groups argh.... :D
Code:
.userTitle
{
    font-size: 11px;
    background: transparent url('@imagePath/xenforo/gradients/form-button-white-25px.png') repeat-x top;
    padding: 1px 5px;
    margin-top:35px;
    border: 1px solid transparent;
    border-radius: 3px;
    box-shadow: 1px 1px 3px rgba(0,0,0, 0.25);
    text-align: center;
    color: white;
background-color: green;
border-color: green;
}

.userTitle.wrapped
    {
        border-top-right-radius: 0;
        border-top-left-radius: 0;
        position: relative;
    }
     
        .userTitle.wrapped span
        {
            position: absolute;
            top: -4px;
            width: 5px;
            height: 4px;
            background-color: inherit;
        }
     
         .userTitle.wrapped span.before
        {
            border-top-left-radius: 3px;
            left: -1px;
        }
     
        .userTitle.wrapped span.after
        {
            border-top-right-radius: 3px;
            right: -1px;
        }

My best result... i'm not developer, i only reasoned a bit :)

Senza-titolo-1.webp
 
I've installed this and it doesn't seem to be working. My trophy user titles still say trophy points and not message count.
 
It doesn't change text, only functionality. Text in admin control panel is only visible to administrators anyway.
 
Top Bottom