MyBB Community Forums

Full Version: How would I add the group image in the ShowTeam.php page
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello, how would I go about adding the group image onto the ShowTeam.php? I would really like some helps. Thanks
Two steps:
1) Edit showteam.php around line 34 from
$query = $db->simple_select("usergroups", "gid, title, usertitle", "showforumteam=1", array('order_by' => 'disporder'));
to
$query = $db->simple_select("usergroups", "gid, title, usertitle, image", "showforumteam=1", array('order_by' => 'disporder'))
(i.e. add "image" to the query)

2) In the templates > Show Forum Team Templates > showteam_usergroup and showteam_moderators
add
<img src="/{$usergroup['image']}">
where you want to have the image.