8 lines
246 B
PHP
8 lines
246 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Single Product Quantity Inputs
|
||
|
*/
|
||
|
|
||
|
global $post, $_product, $name, $value;
|
||
|
?>
|
||
|
<div class="quantity"><input name="<?php echo $name; ?>" value="<?php $value; ?>" size="4" title="Qty" class="input-text qty text" maxlength="12" /></div>
|