2016-11-19 220 views
0

我瘋了!我想在Magento 2中將0,5添加到我的購物車中,但它不起作用!magento 2添加到購物車1下方購物車

我將「購物車中允許的最低數量」調整爲0.5,嘗試了一切,但無法正常工作。

1.2工作正常,但0.9將無法正常工作

鏈接:https://www.huurhulp.nl/tricot-stoffen/stippen/tricot-rood-stippen-8mm.html

I'f我看着頁面的源代碼我覺得這部分,我認爲有問題。

<div class="control"> 
    <input type="number" 
     name="qty" 
     id="qty" 
     maxlength="12" 
     value="0.5" 
     title="Qty" class="input-text qty" 
     data-validate="{&quot;required-number&quot;:true,&quot;validate-item-quantity&quot;:{&quot;minAllowed&quot;:1}}" 
    /> 
</div> 

回答

0

它是在ProductView.phpThis行的行似乎禁止分鐘數量小於1

的magento /模塊目錄庫存/砌塊/插件/ ProductView.php:$ PARAMS [」 minAllowed'] = max((float)$ stockItem-> getQtyMinAllowed(),1);

我手動將它設置爲0,5,並做了這項工作(但不好...)

相關問題