Re: Require Login
@wardeh – I haven’t actually tried that plugin with a custom member theme, but it might not be working for 2 reasons.
First might be because the plugin is calling $is_member_page, it might not work unless you have all the functions included with the normal buddypress-member theme.
Second reason might be because the header('Location: ' . get_settings('siteurl') . '/register');
is calling the register page on the main theme that doesn’t exist? Maybe change that line to header('Location: ' . get_settings('siteurl') . '/wp-signup.php');
and see if that works?
The bbPress plugin should work if you are calling it out of /my-plugins/ but I am pretty sure you have to have the <?php bb_head(); ?>
in your template header as well as <?php do_action('bb_foot'); ?>
in your template footer.php.
Let me know, as the bbPress plugin is just a “redesign” of the force login plugin found in the bbPress forums.
Trent