View Single Post
  #6  
Old 04-24-2003, 03:55 PM
  Jon's Avatar 
Jon Jon is offline
 

X-Guru
  
Join Date: Oct 2002
Location: Vancouver, Canada
Posts: 4,200
 

Default

Code:
<select name=amount> {if $products[product].min_amount le 1} {assign var="start_quantity" value=1} {else} {assign var="start_quantity" value=$products[product].min_amount} {/if} {section name=quantity loop=$mq start=$start_quantity} <option value="{%quantity.index%}" {if $smarty.get.quantity eq %quantity.index%}selected{/if}>{%quantity.index%}</option> {/section} </select>

Replace with this code and that should do it:

Code:
<input type="text" name="amount" size="3">
Reply With Quote