You can try this ...
Edit the file:
/includes/init_includes/init_cart_handler.php
and add the code in RED:
Code:
if ($session_started == false) {
zen_redirect(zen_href_link(FILENAME_COOKIE_USAGE));
}
// bof: check to override DISPLAY_CART false
$chk_products = $_POST['products_id'];
$show_cart = false;
if (is_array($chk_products)) {
foreach ($chk_products as $key => $value) {
if ((zen_get_products_stock($key) - ($value + $_SESSION['cart']->in_cart_mixed($key))) < 0) {
$show_cart = true;
break;
}
}
} else {
if (zen_get_products_stock($chk_products) <= 0) {
$show_cart = true;
}
}
if (DISPLAY_CART == 'true' || $show_cart) {
// eof: check to override DISPLAY_CART false
$goto = FILENAME_SHOPPING_CART;
see if that accomplishes what you are after ...