J'ai un peu avancé, mais mon niveau en php et trop faible pour trouver une réponse :
je pense que cela vient du bout de code dans le fichier checkout_payment.php :
//CRELOADED.FR MOD BEGINS
$any_out_of_stock = 0;
for ($i=0, $n=sizeof($products); $i<$n; $i++) {
if (isset($products[$i]['attributes']) && is_array($products[$i]['attributes'])) {
$stock_check = tep_check_stock($products[$i]['id'], $products[$i]['quantity'], $products[$i]['attributes']);
}else{
$stock_check = tep_check_stock($products[$i]['id'], $products[$i]['quantity']);
}
if ($stock_check) $any_out_of_stock = 1;
}
if ($any_out_of_stock == 1) {
tep_redirect(tep_href_link(FILENAME_SHOPPING_CART));
break;
}
}
//CRELOADED.FR MOD ENDS
lorsque je le remet d'origine, tout fonctionne correctement mais le stock des attributs ne se met pas à jour, et lorsque je met celui fournit par QTPRO j'ai une page blanche....