MyBB Community Forums

Full Version: modify user control panel title
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
i need a help to modify user control panel title

now user control panel title is like "forum title-Profile of username"

i would like to change the title "username | forum title"


i know this modification exist in "Edit Template: usercp"
but the variable {$lang->user_cp} itself like "Profile of username"

how i use "username" alone here ?
Go to: ACP > Templates > User Control Panel Templates > usercp > and find;
<title>{$lang->user_cp}</title>
and Change it to;
<title>{$lang->user_cp} of {$mybb->user['username']}</title>

It will result into like;
Quote:User Control Panel of Yaldaram
Thanks ...its working ...
Thanks.