MyBB Community Forums

Full Version: change the welcome sign
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
on my forum on the top it says:

Welcome back, BLAH. You last visted: Today so and so

how do i delete the last visited part?

im very forgetful right now

Thanks Again
There are two ways to achieve it.

1. Modify in the global.lang.php line 34 to what ever you want:
$l['welcome_back'] = "<strong>Welcome back, {1}</strong>. You last visited: {2}";

2. Edit the "header_welcomeblock_member" template (AdminCP -> Templates & Style -> Templates -> {your Theme} -> Header Templates -> header_welcomeblock_member).
You could change the "{$lang->welcome_back}" statement to something like that:
<!--{$lang->welcome_back}--><strong>Welcome back, {$mybb->user['username']}.</strong>