Magento如何为每个捆绑项目添加捆绑项目图像和数量?

时间:2015-10-12 08:19:33

标签: php magento

我制作了一个捆绑产品,我想在每个捆绑包中只添加一个图像,并为每个捆绑项目添加数量增加/减少。

我试过像这样的复选框

 <img src="<?php echo $this->helper('catalog/image')->init($_selection, 'small_image')->resize(200,200); ?>" />

它运作良好,但我得到每个项目图像而不是一个图像

第二,我已经添加了一系列不起作用的数量

 <span class="qty-holder">
            <label for="bundle-option-<?php echo $_option->getId() ?>-qty-input"><?php echo $this->__('Qty:') ?>&nbsp;</label>
<input onkeyup="bundle.changeSelectionQty(this, event)" onblur="bundle.changeSelectionQty(this, event)" <?php if (!$_canChangeQty) echo ' disabled="disabled"' ?> id="bundle-option-<?php echo $_option->getId() ?>-qty-input" class="input-text qty<?php if (!$_canChangeQty) echo ' qty-disabled' ?>" type="text" name="bundle_option_qty[<?php echo $_option->getId() ?>]" value="<?php echo $_defaultQty ?>"/>

       </span>

我想要一个类似以下链接的捆绑产品: http://www.thewhitecompany.com/bedroom/bed-linen/genoa-bed-linen-collection--silver/

0 个答案:

没有答案