Hallo,
wir haben das Problem jetzt gelöst.
Sicherlich nicht auf die beste Weise, aber es funktioniert.
Folgendes hat man bei mir getan:
ab index.php zeile 54 haben wir folgendes eingefügt :
/****************************************************
will change the shippingtime according to the quantity
**/
$newdate = date('Y-m-d H:i:s', strtotime("+2 week"));
$nowdate = date('Y-m-d H:i:s');
@mysql_query("UPDATE `products` SET `products_shippingtime` = '6',
`products_date_available` = '$newdate' WHERE `products_quantity` <= 0;");
@mysql_query("UPDATE `products` SET `products_shippingtime` = '4',
`products_date_available` = '$nowdate' WHERE `products_quantity` > 1;");
/**
jetzt wird der Lieferstatus richtig angezeigt.
Grüße
Dadaddel