If you change:
Code:
if ($login_type=="C") {
if(!func_is_cart_empty($cart))
func_header_location("../$redirect/cart.php");
else
func_header_location("../$redirect/home.php");
}
in include/login.php
to
Code:
if ($login_type=="C") {
if(!func_is_cart_empty($cart))
func_header_location("../$redirect/cart.php");
else
func_header_location("../$redirect/help.php");
}
Assuming your help menu is based on the help.php page.
This will direct them there if their cart is empty.