This is why i cant be bothered to be helpful around here.. I blame this guy.. Hes to damn quick...The line is only shown to moderators, regular members don't see it.
hello Brogan, do you know how to make it visible for everyone?The line is only shown to moderators, regular members don't see it.
If you want to remove it though, you can use EXTRA.css:
Code:.username .banned { text-decoration: none !important; }
Is there a way to show the line through the user name to everyone without adding banned members to a usergroup?
Theoretically you could make an add-on that overwrites the XenForo_Template_Helper_Core::helperUserNameHtml() method. In that you'd check if the user is banned and then change the html output there. This seems more difficult than just adding them to the user group though?
.username .banned {
text-decoration: line-through;
}
.username .style# {
text-decoration: line-through;
}
By default, the line-through comes from this in the username_styles.css template:
Code:.username .banned { text-decoration: line-through; }
If you have a user group for banned members, remove that from the template and add this to EXTRA.css instead:
Rich (BB code):.username .style# { text-decoration: line-through; }
Changing # to the ID of the user group.
We use essential cookies to make this site work, and optional cookies to enhance your experience.