MyBB Community Forums

Full Version: editing {$lang->welcome_back}
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Id like to change what the {$lang->welcome_back} says in the panel. Where can I edit that?

Is there a certain place to edit the macros?
In ./inc/languages/english/global.lang.php , find;
$l['welcome_back'] = "<strong>Welcome back, <a href='member.php?action=profile'>{1}</a></strong>. You last visited: {2}";

You can edit the text from there. But don't remoce {1} and {2} codes.
I want to remove the "You last visited" part. How would I do that?
Replace above with this;
$l['welcome_back'] = "<strong>Welcome back, <a href='member.php?action=profile'>{1}</a></strong>.";
thanks, so I just edit that line using the FTP program?
Yes, open that file and edit.

You can also edit it right from your ACP > Configurations > Languages > English > global.lang.php > and search that and edit.
thank you!
Most welcome Wink