this is how it is set in the db.php file
// There is no cookie set. We will set the cookie
// and return the value of the users session ID
session_start();
setcookie("cartId", session_id(), time() + ((3600 * 24) * 30));
return session_id();
}
}
i tried this and it still doesn't delete the cookie
<?php setcookie("cartId", session_id(), time() - ((3600 * 24) * 30));?>