Try this.
Open include/login.php
FIND:
Code:
else {
func_header_location($redirect_to."/home.php");
}
Replace with:
Code:
else {
$sendto = $redirect_to;
if ($sendto == "admin") { $sendto = $sendto . "/orders.php"; }
else { $sendto = $sendto . "/home.php"; }
func_header_location($sendto);
}