MyBB Community Forums

Full Version: Replace value to be able to log in?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

I've recently tried to fix a theme for a community. The theme I'm using is absolutly gorgeous, but for some reason the log in button does not work.. Whenever I press Log In in the top tab (LOG IN | REGISTER) nothing happens.

I was searching about it and I found something. It said you had to change the value, but where do I change that? Please help!!

This is the code I think needs to be replaced/edited..

<a href="http://yourdomain/member.php?action=login">Login</a> or <a href="http://yourdomain/member.php?action=register">Register</a>

Links;

http://myskins.org/Thread-LIB-Theme-problem?pid=1005

http://rapzygamerstest.comuv.com/

http://myskins.org/Thread-LIB-Life-Is-Be...MyBB-Theme
You need to edit header_welcomeblock_guest template. Currently the <a> element should open jQuery popup login and you most likely have JS conflict, so changing login button to this:
<a href="{$mybb->settings['bburl']}/member.php?action=login">Login</a>
in the mentioned template will work.