Is there a way to have a member go straight to their profile page after login instead of their account page? If so how would I make that happen?
Is there a way to have a member go straight to their profile page after login instead of their account page? If so how would I make that happen? |
Hello! Easiest variant - modify next line i inc/admin.inc.php: $login_page = BX_DOL_URL_ROOT . "member.php"; to this one: $login_page = BX_DOL_URL_ROOT . "profile.php?ID" . getLoggedId(); If getLoggedId will be undeclared then include file inc/profiles.inc.php Regard |
Thanks for letting me knwo about that. I put that string of code in but it is still defaulting to the account page and not their profile page. I cleared the Cashe in my admin as well as in my browser but its still defaulting to the account page. Is there something else I need to do or another way to do this? |