早上好,我安装了Magento ver。 1.9.2.1我需要删除某些产品的包装盒数量。我想,例如,当最大数量设置为1时,而不是其他产品离开盒子。谢谢,你有什么建议吗?
尼古拉
我尝试修改addtochar.phtml文件,但没有成功。我附上了代码 ?> getProduct(); ?> ('添加到购物车'); ?> isSaleable()):?> isGrouped()):?> __('数量:')?> getProductDefaultQty()* 1?>" title =" quoteEscape($ this-> (' Qty'))?>" class =" input-text qty" /> " ID ="产品addtocart按钮" class =" button btn-cart"的onclick =" productAddToCartForm.submit(本)"> getChildHtml('',true,true)?> showButtonDesign(); ?>
答案 0 :(得分:0)
我希望这段代码可以帮到你。
<div class="add-to-cart">
<?php if(!$_product->isGrouped()): ?>
<?php $hiddenFlag = in_array($_product->getId(), array(10,20,30,40)) ? true : false; ?>
<?php if (!$hiddenFlag): ?>
<label for="qty"><?php echo $this->__('Qty:') ?></label>
<?php endif;?>
<input type="<?php echo $hiddenFlag ? 'hidden' : 'text' ?>" name="qty" id="qty" maxlength="12" value="<?php echo $this->getProductDefaultQty() * 1 ?>" title="<?php echo Mage::helper('core')->quoteEscape($this->__('Qty')) ?>" class="input-text qty" />
<?php endif; ?>
<button type="button" title="<?php echo $buttonTitle ?>" id="product-addtocart-button" class="button btn-cart" onclick="productAddToCartForm.submit(this)"><span><span><?php echo $buttonTitle ?></span></span></button>
<?php echo $this->getChildHtml('', true, true) ?>
</div>
请注意以下一行:<?php $hiddenFlag = in_array($_product->getId(), array(10,20,30,40)) ? true : false; ?> it will check if product eligible for a qty visibility.