Thanks Dean!
i’ve done!
first into extension.php i’ve removed the:
bp_has_groups_hierarchy(array(
'type' => 'alphabetical',
'parent_id' => $bp->groups->current_group->id,
'page' => $page
));
second, at the tree-loop.php, i’ve removed the old loop bp_has_groups(bp_ajax_querystring( ‘tree’ )) and replaced with:
bp_has_groups_hierarchy(array(
'type' => 'alphabetical',
'parent_id' => $qd,
'page' => $page
));
my $qd is the current ajax(bp_ajax_querystring( ‘tree’ )) clicked group_id!
i’m not sure if its the right way.. bu worked like a charm..
very thx!
??