Quote:
Originally Posted by mmoskva
I want to redirect the customer to either the cart page or to their account page is nothing is in the cart, what code do I place in for that?
|
if(!func_is_cart_empty($cart))
func_header_location($redirect_to."/cart.php");
else
func_header_location($redirect_to."/account.php");
Anyone know how to have it redirect to the previous page???