MyBB Community Forums

Full Version: why is every user's "display user group" set to registered?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
going through the forums I just converted from phpbb 3 and noticed that every single user's "display user group" is set to registered. is there a way to change it for every user so it's set to "use primary user group"?
any suggestions on how to fix this, Dylan? is there an SQL query I can run to set all users to show their primary user group rather than registered?
this query should help :
UPDATE `mybb_users` SET `displaygroup` = '0';
Thanks for stepping in Ranji, I was on Vacation for a week.
if dont serve, i dunno how takes the data. But you can use a query to takes the values and assign to every member. If takes your original staff but if you want to take all of them for a usergroup.

This is your query since mysql.

Like ranjani says..

UPDATE mybb_users SET displaygroup = 'groupid4all' WHERE userid <> 'yourid';

This way takes all of users except you the same group as yu assign. The value userid replace with the key as take the id for user.

Cheers.

Cheers.