In the insertform for new groups there can the default country modified with this litte hack:
In modules/boonex/groups/classes/BxGroupsFormAdd.php search for:
'country' => array(
'type' => 'select',
'name' => 'country',
'caption' => _t('_bx_groups_form_caption_country'),
'values' => $aCountries,
'required' =>
false,
and replace with:
'country' => array(
'type' => 'select',
'name' => 'country',
'caption' => _t('_bx_groups_form_caption_country'),
'values' => $aCountries,
'value' => 'DE',
'required' => false,
where 'value' => 'DE', changed to your country!
More Tipps and tricks in German (!) will be found at http://www.free-dolphin.de
Rappi