I think you can delete profile files from your http://ftp..
This is my site – http://hacks5.com
Maybe not the most elegant, but this is quick and easy and should do it
In you theme, create a folder called ‘bbpress’ eg
wp-content/themes/your-theme-name/bbpress
then create a file called
content-single-user.php
into that put the following code
<?php
/**
* Single User Content Part
*
* @package bbPress
* @subpackage Theme
*/
?>
<div id="bbpress-forums">
<?php echo 'Sorry access not permitted' ; ?>
</div>
then save this file to the bbpress folder you created above
If you want to completely hide the page, you could just put say your homepage url into the echo line and they would just be taken to the homepage.
does this still work?
what if i want to disable this only for suscribers user role?