MyBB Community Forums

Full Version: how to change usercp text to members username
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
click to see image

i want change change here usercp text to logged members username 

this type click to see

please help me out
in general, code similar to below used in header_welcomeblock_member template
<a href="member.php?action=profile&uid={$mybb->user['uid']}">{$mybb->user['username']} </a>
you have to use such code in the code related to drop down menu ..

[MyBB Templates System]
(2020-04-26, 12:24 PM).m. Wrote: [ -> ]in general, code similar to below used in header_welcomeblock_member template
<a href="member.php?action=profile&uid={$mybb->user['uid']}">{$mybb->user['username']} </a>
you have to use such code in the code related to drop down menu ..

[MyBB Templates System]

Thank you so much 
it's working and helpful