Quote:
Originally Posted by BHMedia
Hey ! - Can can I get rid of Quantity - ? I drop ship so there is no way for me to know much is in quantity -So i need to get rid of it I looked in the above file looks like alot to comment out - im sure you know of an easy way! Please Thanks!
|
open buy_now.tpl
look for
Code:
<select name=amount>
{if $product.min_amount le 1}
{assign var="start_quantity" value=1}
{else}
{assign var="start_quantity" value=$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
Quote:
<input type=hidden name="amount" value="1">
|