MyBB Community Forums

Full Version: Display Group
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Would it be possible to write something so when members join a public usergroup it's automatically set as their display name? So they don't have to click the "change display group" button?

Thanks for any suggestions you can offer Smile
In inc/functions.php, find:
	$db->query("
		UPDATE ".TABLE_PREFIX."users
		SET additionalgroups='$groupslist'
		WHERE uid='$uid'
	");
Replace with:
	$db->query("
		UPDATE ".TABLE_PREFIX."users
		SET additionalgroups='$groupslist', displaygroup='$joingroup'
		WHERE uid='$uid'
	");
Thanks so much! Smile
You're welcome.