Jump to content
xt:Commerce Community Forum

Artikel Bestand = 0 => Artikel wird inaktiv


vwittich

Recommended Posts

Wieso werden bei mir der products_status = 0 (also auf inaktiv) gesetzt wenn products_quantity < 1 (=der Artikel ausverkauft) ist... das geschieht immer automatisch.. in welcher Datei könnte das passieren?

Ich mach mich gerne auch selber auf die Suche, dazu müsste ihr nur wissen an welcher Stelle die products_quantity geändert wird.. in den Moment wenn die Bestellung abgeschloßen ist?

MFG Valentin

Link to comment
Share on other sites

habs schon, war mal wieder zu faul man muss nur STOCK_ALLOW_CHECKOUT auf true stellen... ich habs jetzt mal in der configuration.php gemacht...

pfad: lang/(sprache)/admin/configuration.php

define('STOCK_ALLOW_CHECKOUT', 'true');

hoffe die Variable wird nicht schon irgedenwo anderes definiert...

MFG Valentin

Link to comment
Share on other sites

  • 5 months later...

habs schon, war mal wieder zu faul man muss nur STOCK_ALLOW_CHECKOUT auf true stellen... ich habs jetzt mal in der configuration.php gemacht...

pfad: lang/(sprache)/admin/configuration.php

define('STOCK_ALLOW_CHECKOUT', 'true');

hoffe die Variable wird nicht schon irgedenwo anderes definiert...

MFG Valentin

Hi Valentin,

hab's wie Du beschrieben hast gemacht, aber ohne Erfolg! Hast Du es gelöst (wenn ja, wie?) das die Artikel mit Menge <= 0 NICHT angezeigt werden?

Link to comment
Share on other sites

  • 4 months later...

Zurück zur ursprünglichen Frage: Die checkout_process.php macht es:

   if (($stock_left < 1) && (STOCK_ALLOW_CHECKOUT == 'false')) {
xtc_db_query("update ".TABLE_PRODUCTS." set products_status = '0' where products_id = '".xtc_get_prid($order->products[$i]['id'])."'");
}
[/PHP]

Wenn Du den Code raus löscht, wird das Produkt nicht mehr Inaktiv, sondern blaubt aktiv, also im Shop sichtbar, trotz Menge '0'

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...