opencart2.x - Opencart- Remove option-label by vqmod instead of CSS -
i remove option text label on front end of website xml. know how so?
<div class="option form-group<?php echo ($option['required'] ? ' required' : ''); ?>"> <label class="control-label" for="input-option<?php echo $option['product_option_id']; ?>"><?php echo $option['name']; ?></label> <input type="text" name="option[<?php echo $option['product_option_id']; ?>]" value="<?php echo $option['value']; ?>" placeholder="<?php echo $option['name']; ?>" id="input-option<?php echo $option['product_option_id']; ?>" class="form-control" /> </div>
i create vqmod file instead of removing css.
thanks help!
Comments
Post a Comment