6 lines
296 B
PHP
6 lines
296 B
PHP
<?php
|
|
/**
|
|
* Single Product Quantity Inputs
|
|
*/
|
|
?>
|
|
<div class="quantity"><input name="<?php echo $input_name; ?>" data-min="<?php echo $min_value; ?>" data-max="<?php echo $max_value; ?>" value="<?php echo $input_value; ?>" size="4" title="Qty" class="input-text qty text" maxlength="12" /></div>
|