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!

screendump


Comments

Popular posts from this blog

'hasOwnProperty' in javascript -

python - ValueError: No axis named 1 for object type <class 'pandas.core.series.Series'> -

java - How to provide dependency injections in Eclipse RCP 3.x? -