MyBB Community Forums

Full Version: Possible to Split Welcome info?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi everyone.

Currently, there is a tag that is {$lang->welcome_back}.

This tag makes the following appear,
Welcome Back, [USERNAME]. You last visited: [TIME].

I am modifying my board, and for this, I need those two sentences to each be on separate lines. But to do this, I would need either two variables, a change of php, or something else?

Can someone please help me so it becomes:

Welcome Back, [USERNAME].
You last visited: [TIME].
Firstly CHMOD your global.lang.php file to 775. inc/languages/english/global.lang.php.

Then

Admin CP > Language Packs > Manage

Open global.lang.php (front-end) Scroll down to the welcome_back section

Replace with
<strong>Welcome back, {1}</strong>.<br  />You last visited: {2}
Thanks so much!
Oh, just one more question.

Is it possible to take the variable {$lang->stats_mostonline} from the index stats and make it work in the who's online section?