Re: WP+BB integrated, theme integrating login issues..
Nevermind, much props goes to boyevul on GoogleTalk! The login codes were placed in the theme’s header2.php file, directly after an “onclick” action, which was the culprit.
So this:
<div id=”header” onclick=”location.href='<?php bloginfo(‘url’); ?>’;” style=”cursor: pointer;”>
<h1><a href="<?php bb_option('uri'); ?>"><?php bb_option('name'); ?></a>
</h1>
<?php login_form(); ?>
<div id=”memlist”><a href="<?php bb_memberlist_link(); ?>">Member List</a>
</div>
</div>
Was changed to this:
<div id=”header”>
<h1><a href="<?php bb_option('uri'); ?>"><?php bb_option('name'); ?></a>
</h1>
<?php login_form(); ?>
<div id=”memlist”><a href="<?php bb_memberlist_link(); ?>">Member List</a>
</div>
</div>
And all was peachy! I didn’t however upload the latest files of bbPress to the online copy, and I didn’t upload the new changes I just made here either.. I will then ..
Either way, problem is solved!
spencerp