Well, 10 minutes after..I see there’s not much around. Went to the code and did a little tweak. I’m sharing this in case anybody need it:
add_filter( 'is_bbpress', 'my_bbpress_page' );
function my_bbpress_page( $retval = false ){
if ( is_page_template( 'my-template.php' ) ) {
$retval = true;
}
return $retval;
}
I’ll try and see if I have some time to make some docs around this. Having documentation is the key to have more things around this plugin.
Best,
Juan.