Hi, I want all users who signup/join via Facebook Connect or create a new account to index page instead of member.php or avatar page.
For Facebook Connect I did:
Changed settings in Admin > Modules > FB Connect > Setting > "Redirect page after first sign in" selected index.php in dropdown.
Then I edited: modules\boonex\facebook_connect\classes\BxFaceBookConnectModule.php
and replaced member.php with index.php
case 'member' :
default :
$sRedirectUrl = BX_DOL_URL_ROOT . 'member.php';
break;
}
Then cleared the cache via admin panel.
But problem is still there.
Am I missing anything?