Merging Global Forum with Group Forums:-
Please put the following code in your functions.php/bp-custom.php to allow the merge
[sourcecode language="php"]
add_filter("gf_get_root_forum_id","gf_no_restriction");
add_filter("gf_excluded_forums","gf_no_restriction");
function gf_no_restriction(){
return 0;
}
[/sourcecode]