MyBB Community Forums

Full Version: change icon name up top
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
i want to change my "Member List" button to "Members"....

How would i do this....The only thing showing up is the icon with a link on it to go to the member list...

some help please thanks
ACP>Templates & Themes>Templates>*your theme*>Header Templates>header

Edit the text.
ACP > Templates & Styles > Templates > Your Theme > Header Templates > header

<li><a href="{$mybb->settings['bburl']}/memberlist.php"><img src="{$theme['imgdir']}/toplinks/memberlist.gif" alt="" title="" />{$lang->toplinks_memberlist}</a></li>

Change to:

<li><a href="{$mybb->settings['bburl']}/memberlist.php"><img src="{$theme['imgdir']}/toplinks/memberlist.gif" alt="" title="" />Members</a></li>
You should preferably edit the string in ./inc/languages/english/global.lang.php. It's on line 12:

$l['toplinks_memberlist'] = "Member List";