MyBB Community Forums

Full Version: Quick Login box?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
In the forum when you select the option login a quick login box appears with text boxes to enter the user name and password. And after it there is check box if asking if you want to remember the password. For some reason the text appears as "undefined" on my forum instead of remember the password. Huh How do I fix it?

[Image: userlogc.jpg]
Go to ACP > Templates > Header Templates > header_welcomeblock_guest > and find;
	lang.remember_me = "any thing";
and change it to;
	lang.remember_me = "{$lang->remember_me}";
(2011-03-08, 09:14 AM)Yaldaram Wrote: [ -> ]Go to ACP > Templates > Header Templates > header_welcomeblock_guest > and find;
	lang.remember_me = "any thing";
and change it to;
	lang.remember_me = "{$lang->remember_me}";

Okay thank you! Smile Hey btw I wanted to ask what is the theme your using for edubb?

I just checked and there isnt any code like the one you have mentioned above in the template;
<script type="text/javascript">
<!--
	lang.username = "{$lang->login_username}";
	lang.password = "{$lang->login_password}";
	lang.login = "{$lang->login}";

	lang.lost_password = "<div style=\"float: right;\" class=\"welcomebutton\"><a href=\"{$mybb->settings['bburl']}/member.php?action=lostpw\"><span><img src=\"{$theme['imglangdir']}/icons/lostpassword.png\" alt=\"\"/>{$lang->lost_password}<\/span><\/a>";
	lang.register_url = "<a href=\"{$mybb->settings['bburl']}/member.php?action=register\"><span><img src=\"{$theme['imglangdir']}/icons/register.png\" alt=\"\"/>{$lang->welcome_register}<\/span><\/a><\div>";
// -->
</script>
<div id="quick_login" style="height: 25px;"><div style="float: right;" class="welcomebutton"><a href="{$mybb->settings['bburl']}/member.php?action=login" onclick="MyBB.quickLogin(); return false;"><span><img src="{$theme['imglangdir']}/icons/login.png" alt=""/>{$lang->welcome_login}</span></a><a href="{$mybb->settings['bburl']}/member.php?action=register"><span><img src="{$theme['imglangdir']}/icons/register.png" alt=""/>{$lang->welcome_register}</span></a></div>
<div style="padding: 5px;">{$lang->welcome_guest}</div></div>