MyBB Community Forums

Full Version: move "you last visited"
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi all just hoping someone can help.
I would like to move the "you last visited" to below the "welcome back" line
I know where all the code is just hoping someone knows an easier way to change it.

Global.lang.php
$l['welcome_back'] = "<strong>Welcome back, {1}</strong>. You last visited: {2}";

Global.php
$lang->welcome_back = $lang->sprintf($lang->welcome_back, $mybb->user['username'], $lastvisit);
This may not be the "correct" way but it is what I did (cheap and dirty)

Find: /inc/languages/english/global.lang.php and change
$l['welcome_back'] = "<strong>Welcome back, {1}</strong>You last visited: {2}";

to read
$l['welcome_back'] = "<strong>Welcome back, {1}</strong><br />You last visited: {2}";

Whenever you do an upgrade you will have to go back and change it again.
(2010-11-25, 04:35 AM)Gene_RI Wrote: [ -> ]This may not be the "correct" way but it is what I did (cheap and dirty)

Find: /inc/languages/english/global.lang.php and change
$l['welcome_back'] = "<strong>Welcome back, {1}</strong>You last visited: {2}";

to read
$l['welcome_back'] = "<strong>Welcome back, {1}</strong><br />You last visited: {2}";

Whenever you do an upgrade you will have to go back and change it again.

This was exactly what I was looking for.
Dosn't matter if it's not "correct" it works.
rep to you