MyBB Community Forums

Full Version: User cp drop down menu
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi, I am using mybb 1.6. My user cp drop down menu displays a diff lang for the links. Checked templates and they are in english. Not sure why it displays a diff lang than english....any ideas? Huh








http://fun-chat.biz
What User CP dropdown? Can you please provide a test account?
I think he means the panel on the left in the UCP.
No, I meant the drop down menu on home page to access the users cp panel and i have pm'd you with a test account...also when creating a new thread, the drop down menu for font and text are empty







http://fun-chat.biz


I am gathering faviouz that you have no ideas or suggestions on these problems?
it is in the header_welcomeblock_member of the template
find this in that section <span style="float:right;">
<a href="{$mybb->settings['bburl']}/usercp.php" id="usercp"><img src="images/blue_warez2/menu.png">{$lang->welcome_usercp}</a>
_____________________________________________________________
it will look like this:
<div id="usercp_popup" class="popup_menu" style="display: none;">
<div class="popup_item_container"><a href="{$mybb->settings['bburl']}/usercp.php" class="popup_item">{$lang->welcome_usercp}</a></div>
<div class="popup_item_container"><a href="{$mybb->settings['bburl']}/usercp.php?action=profile" class="popup_item">Edytuj profil</a></div>
<div class="popup_item_container"><a href="{$mybb->settings['bburl']}/usercp.php?action=avatar" class="popup_item">Zmień awatar</a></div>
<div class="popup_item_container"><a href="{$mybb->settings['bburl']}/usercp.php?action=editsig" class="popup_item">Zmień sygnaturę</a></div>
<div class="popup_item_container"><a href="{$mybb->settings['bburl']}/usercp.php?action=options" class="popup_item">Edytuj opcje</a></div>
</div>
_____________________________________________________________
below that change it to look like this
<div id="usercp_popup" class="popup_menu" style="display: none;">
<div class="popup_item_container"><a href="{$mybb->settings['bburl']}/usercp.php" class="popup_item">{$lang->welcome_usercp}</a></div>
<div class="popup_item_container"><a href="{$mybb->settings['bburl']}/usercp.php?action=profile" class="popup_item">Edit Profile</a></div>
<div class="popup_item_container"><a href="{$mybb->settings['bburl']}/usercp.php?action=avatar" class="popup_item">Change Avatar</a></div>
<div class="popup_item_container"><a href="{$mybb->settings['bburl']}/usercp.php?action=editsig" class="popup_item">Change Signature</a></div>
<div class="popup_item_container"><a href="{$mybb->settings['bburl']}/usercp.php?action=options" class="popup_item">Edit Options</a></div>
</div>
then save refresh the forum and it should be in english