Fixed User titles still showing despite clearing user title ladder

Oblivion Knight

Well-known member
Affected version
2.0.2
My understanding is that by clearing the user title ladder, user titles should no longer be displayed?

However, I have done this and the existing user titles are still being displayed for all users.

I'm having to add this to extra.less to remove them from view completely..
Code:
.userTitle {
    display: none !important;
}

I couldn't see any kind of option anywhere to disable the feature, only to remove them in the event that a banner is displayed in addition to the title?

I've tried rebuilding various caches, none of which seem to clear the user titles.
 
This will be fixed in the next release, it's just a caching issue. To solve it for now, you can just run the following query:
SQL:
DELETE FROM xf_data_registry WHERE data_key = 'userTitleLadder'
 
Top Bottom