Re: Homepage other than Activity or Admin Blog (or a WP page)
Very simple way – assuming you’re using a child theme of bp-default
1. create and add home.php
2.a. paste either of following in home.php and upload to server
– forums directory on front page
<?php locate_template( array( ‘forums/index.php’ ), true ); ?>
– groups directory on front page
<?php locate_template( array( ‘groups/index.php’ ), true ); ?>
– blogs directory on front page
<?php locate_template( array( ‘blogs/index.php’ ), true ); ?>
OR
2. b. paste required code in home.php and upload to server –
– forums directory on front page – copy from here
– groups directory on front page – copy from here
– blogs directory on front page – copy from here
3. Delete the link (forums or blogs or groups) from header.php navigation div to avoid duplication