MyBB Community Forums

Full Version: Login???
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
OK that fixed that problem but now Remember Me isn't working, why?

edit: Also the button looks different too
Re-add the jQuery file to your headerinclude file.
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>

And add this below it (in the headerinclude file)
<script type="text/javascript">
jQuery.noConflict();
</script>
Nope, Still Undefined showing...

Oh and also I want the Username, Password, and login to be on different lines, where can I insert <br> I've tried in 5 places and no help
For the undefined fields, in your header_welcomeblock_guest (Templates & Styles -> *your themes templates* > Header Templates) find and replace the following:

Find:
<script type="text/javascript">
<!--
	lang.username = "Username";<br>
	lang.password = "Password";<br>
	lang.login = "Login";<br>
	lang.lost_password = " &mdash; <a href="http://toontownresistance.org/member.php?action=lostpw">Lost Password?</a>";
	lang.register_url = " &mdash; <a href="http://toontownresistance.org/member.php?action=register">Register</a>";
	lang.remember_me = "Remember me";
// -->
</script>

Replace with:
<script type="text/javascript">
<!--
	lang.username = "{$lang->login_username}";
	lang.password = "{$lang->login_password}";
	lang.login = "{$lang->login}";
	lang.lost_password = " &mdash; <a href=\"{$mybb->settings['bburl']}/member.php?action=lostpw\">{$lang->lost_password}<\/a>";
	lang.register_url = " &mdash; <a href=\"{$mybb->settings['bburl']}/member.php?action=register\">{$lang->welcome_register}<\/a>";
	lang.remember_me = "{$lang->remember_me}";
// -->
</script>
Nope. Nothing please help
There's no need to keep deleting your post, and posting another just to bump your thread.
Well any help?
?????
Bump... any help?
header_welcomeblock_guest

There are 2 pieces <script type="text/javascript"> Delete one.

<div style="position: fixed; bottom: 100px; right: 200px; z-index:2"><script type="text/javascript">
<!--
	lang.username = "{$lang->login_username}";
	lang.password = "{$lang->login_password}";
	lang.login = "{$lang->login}";
        lang.lost_password = " &mdash; <a href=\"{$mybb->settings['bburl']}/member.php?action=lostpw\">{$lang->lost_password}<\/a>";
	lang.register_url = " &mdash; <a href=\"{$mybb->settings['bburl']}/member.php?action=register\">{$lang->welcome_register}<\/a>";
	lang.remember_me = "{$lang->remember_me}";
// -->
</script><br><span style="float: right;">{$lang->welcome_current_time}</span>
		<span id="quick_login">{$lang->welcome_guest} (<a href="{$mybb->settings['bburl']}/member.php?action=login" onclick="MyBB.quickLogin(); return false;">{$lang->welcome_login}</a> &mdash; <a href="{$mybb->settings['bburl']}/member.php?action=register">{$lang->welcome_register}</a>)</span></div>
Pages: 1 2