View Single Post
  #2  
Old 09-30-2003, 10:09 PM
 
funkydunk funkydunk is offline
 

X-Man
  
Join Date: Oct 2002
Location: Cambridge, UK
Posts: 2,210
 

Default

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.
__________________
ex x-cart guru
Reply With Quote