Re: bbPress 1.0 released!
JJJ Are you having any luck??
And can anyone explain what this function is looking at? It’s in bp-group-templatetags.php and reads “bp_forums_is_installed_correctly” That’s where I’m having issues. I can’t get discussion enabled because BP thinks the forums aren’t correctly installed.
I don’t know if I’m just THAT tired or what, but trying to trace it to what it’s looking for is like reading Japanese.
Thanks
Edit to add the function to hopefully make this question easier to answer
function bp_forums_is_installed_correctly() {
global $bbpress_live;
if ( !is_object( $bbpress_live ) ) {
include_once( ABSPATH . WPINC . '/class-IXR.php' );
$bbpress_live = new bbPress_Live();
}
if ( !$bbpress_live->fetch->endpoint )
return false;
return true;
}