How to repalace Quantity Textbox To Dropdown In Product Detail Page In Magento | Magento Source24

How to repalace Quantity Textbox To Dropdown In Product Detail Page In Magento


👉 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; ?>


Deepak Kumar Bind

Success is peace of mind, which is a direct result of self-satisfaction in knowing you made the effort to become the best of which you are capable.

Post a Comment

If you liked this post please do not forget to leave a comment. Thanks

Previous Post Next Post