I would like new jomsocial users to belong to Authors group while new Joomla users are set to Registered
in components/com_community/controllers/register.php around line 360 (note the code Id like to change in the 3rd line remarked out.)
// Get usertype from configuration. If tempty, user 'Registered' as default
$newUsertype = $usersConfig->get( 'new_usertype' );
//$newUsertype = 'Author'; <<<<<<<< I'd like to add this
if ( ! $newUsertype)
{
$newUsertype = 'Registered';
}
however when removing //... Joomla user manager registers the user with BLANK Group...
I must be missing something silly or is there another paramater I can set to resister Jomsocial users as Authors?