At this point, I completely ditched the built-in WordPress login. If you login through WordPress, it doesn't log you into vBulletin. I tried directly linking to the vBulletin login, but people complained about the redirect problem, and there's no indication that you're logged into the main page.
This problem is so aggravating, I almost screw the project, because I have money, but this is still an issue that needs to be addressed.
--------------- Added [DATE]1227203079[/DATE] at [TIME]1227203079[/TIME] ---------------
This is the code that I have so far. Can you guys please help me out with an IF statement in PHP that would hide this code and change to a "You are Logged In" display? The IF statement would obviously have to check for vBulletin cookies.
Sorry about the hassle, I really don't know anything about coding in PHP.
Code:
<form action="/forums/login.php" method="post"> <script src="/forums/clientscript/vbulletin_md5.js" type="text/javascript"></script>
<table border="0" cellspacing="3" cellpadding="1">
<tbody>
<tr>
<td class="login">User Name</td>
<td><input id="navbar_username" class="button" name="vb_login_username" size="11" type="text" tabindex="1" accesskey="u" /></td>
</tr>
<tr>
<td class="login">Password</td>
<td><input class="button" name="vb_login_password" size="11" type="password" tabindex="2" accesskey="p" /></td>
</tr>
<tr>
<td class="smallfont"><input id="cb_cookieuser_navbar" checked="checked" name="cookieuser" type="checkbox" value="1" tabindex="3" accesskey="c" /><span class="login">Remember Me</span></td>
<td><input class="button" title="Log In" name="submit" type="submit" value="Log In" tabindex="4" accesskey="s" />
<span class="login"> <a href="/forums/register.php">Register</a></span></td>
</tr>
</tbody></table>
<input name="do" type="hidden" value="login" />
<input name="forceredirect" type="hidden" value="0" />
<input name="vb_login_md5password" type="hidden" />
</form>