Login     Sign up
HOME LINK DIRECTED TO DASHBOARD
jade (@jadem)
Join date: Sep 1st 2010
Community posts: 14
View Profile
Send Message

I WANT MY USERS TO BE DIRECTED TO THE DASHBOARD AFTER LOGGING IN, AND LOGGED IN MEMBERS WHEN THE CLICK THE HOME BUTTON IT WILL DIRECT THEM TO THE DASHBOARD.JUST LIKE FACEBOOK WHERE THE HOME PAGE IS ACTUALLY THE DASHBOARD.

175 months ago
Vincent T (@vincent)
Join date: Jun 18th 2010
Community posts: 298
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]

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

[quote=vincent]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]

Mate magic thanks

175 months ago
dpahellas (@dpahellas)
Join date: Sep 15th 2010
Community posts: 41
View Profile
Send Message

[quote=vincent]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]

hello.i did the above but have a problem.while trying to access other pages like search,photos etc without login i have access.Any help

175 months ago