When a user qualifies for multiple automated ‘title’ assignments (via badge groups), how is the definitive title determined?
Is it possible to establish a hierarchy among these, perhaps through the order of SQL queries or within the automation UI?
This is crucial for our overall user levels and trust levels, which are set by the progressive completion of specific badges (challenges in our community).
Any advice or help will be very appreciated.
1 Like
The highest priority badge group with a title assigned determines the definitive title.
and Yes, it is possible to establish a hierarchy of titles:
1. SQL Badge Queries
You can control priority by:
Ordering queries logically in the automation script or schedule.
Using SQL to revoke lower-priority titles if a higher-priority one is awarded.
Adding logic like IF NOT EXISTS (SELECT FROM …) to ensure exclusivity.
2. Automation UI (Discourse Admin > Badges)
While the UI doesn’t support direct drag-and-drop reordering, you can:
Assign titles to only the most prestigious badges.
Use custom automation (via plugin or external script) to enforce a hierarchy.
3. Group Prioritization
If multiple badge groups assign titles, Discourse prioritizes based on:
Whether the user manually selects a title (this overrides).
Otherwise, first match by internal order, which can be influenced by badge creation or SQL logic.