Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Как сделать префикс пользователю на XenForo?

Ноя
2,077
7,411
Команда форума
Администратор
Если только определенному пользователю, а не всех в группе, то воспользоваться атрибутом data-user-id
В шаблон extra.less
CSS:
.username[data-user-id="1"]:after
{
    content: 'CODER';
    margin-left: 5px;
    color: black;
    border-radius: 3px;
    border: 3px solid black;
    padding: 0 4px;
    display: inline-block;
    margin: 0 5px -3px;
    font-size: 13px;
    font-weight: bold;
    line-height: 14px;
}
 
Сверху