0

我有中小尺寸的产品。我可以用这个代码来计算产品的数量。“$产品->数量”。但我想分别获得小号和中号的数量。如何编写代码来获取这些值?请帮助我。

4

2 回答 2

4

我认为代码是

{$product.quantity}

但是,如果您指的是不同的产品组合(中小型),您应该首先获得产品的组合,我认为是这段代码:

$product->getAttributeCombinaisons($params['cookie']->id_lang);

祝你好运 !;)

于 2013-06-20T09:55:00.993 回答
0

Prestashop 1.5:

 $product->getAttributeCombinaisons($params['cookie']->id_lang);

getAttributeCombinaisons 在 Prestashop 1.6 中被弃用

改用:

getAttributeCombinations
于 2014-04-09T22:39:14.557 回答