👉 Hello magento friends today's i'm share with you How to repalace Quantity Textbox To Dropdown In Product Detail Page In Magento
use this bellow given code to repalace Quantity Textbox To Dropdown In Product Detail Page In Magento
in this code we are using a select option to set dropdown.
<?php
if(!$_product->isGrouped()): ?>
<label for="qty"><?php echo $this->__('Quantity :') ?></label>
<select class="input-text qty" id="qty" name="qty">
<?php $i = 1 ?>
<?php do { ?>
<option value="<?php echo $i?>">
<?php echo $i?>
<?php $i++ ?>
</option>
<?php } while ($i <= 3) ?>
</select>
<?php endif; ?>