MyBB Community Forums

Full Version: Remove You Last Visited
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey everyone.

I want to edit something on my template but i'm not sure how. I want to remove "You last visited: Today, 04:54 PM" and just have it say Welcome back, Crimson.

What file would i edit to remove this?

Thanks in advance for any help.

EDIT: Sorry, forgot to add my websites link Toungue
http://crimson-discussions.com
Open ./inc/languages/global.php

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

Change into
$l['welcome_back'] = "<strong>Welcome back, {1}</strong>.";

Open global.php
Find
	// Format the welcome back message
	$lang->welcome_back = $lang->sprintf($lang->welcome_back, $mybb->user['username'], $lastvisit);

Change into
	// Format the welcome back message
	$lang->welcome_back = $lang->sprintf($lang->welcome_back, $mybb->user['username']);
Thank you Lex! Smile

Such great support and fast replies.
Looks great now.
I tried to remove the "Lost password" but now i'm getting "undefined".

How would i remove that? Smile