Login     Sign up
Home --> Dashboard
Eino (@eino)
Join date: Oct 15th 2010
Community posts: 56
View Profile
Send Message

Hey!

When a user is logged on, and the user presses the button "Home" to "he / she is showing only the most recent activities. I would like the logged in user comes directly from the Dashboard page, even if he were to come to www.domain.com if he is logged on.

Help?

172 months ago
AL (@switch48)
Join date: Sep 1st 2010
Community posts: 450
View Profile
Send Message

open modules/home/home.php
find this line:
[code]
set_menu_path('home');
[/code]

add these lines after it:
[code]
if ($client['id']) {
redirect('dashboard');
}[/code]

172 months ago
Eino (@eino)
Join date: Oct 15th 2010
Community posts: 56
View Profile
Send Message

[quote=switch48]open modules/home/home.php
find this line:
[code]
set_menu_path('home');
[/code]

add these lines after it:
[code]
if ($client['id']) {
redirect('dashboard');
}[/code] [/quote]

Thanks!

172 months ago