Well I thought I could simply drop this is my html editor and change it, but I'm not 100% sure. If anyone gets a second, can you look at this code and tell me where to edit (the quantity isn't neccessary)? (modules/Product_Options/customer_options.tpl)
Code:
{* $Id: customer_options.tpl,v 1.16.2.2 2004/08/11 12:04:14 max Exp $ *}
{if $product_options ne ''}
<SCRIPT type="text/javascript" language="JavaScript 1.2">
var alert_msg = '{$alert_msg}';
{include file="modules/Product_Options/check_options.tpl"}
</SCRIPT>
{foreach from=$product_options item=v}
{if $v.options ne '' || $v.is_modifier eq 'T'}
<TR>
<TD valign="middle" height="25">{if $usertype eq "A"}{$v.class}{else}{$v.classtext|default:$v.class}{/if}</TD>
<TD valign="middle">
{if $cname ne ""}
{assign var="poname" value="$cname[`$v.classid`]"}
{else}
{assign var="poname" value="product_options[`$v.classid`]"}
{/if}
{if $v.is_modifier eq 'T'}
<INPUT id="po{$v.classid}" type="text" name="{$poname}" value="{$v.default}" size="20">
{else}
<SELECT id="po{$v.classid}" name="{$poname}"{if $disable} disabled{/if} onchange="javascript: check_options();">
{foreach from=$v.options item=o}
<OPTION value="{$o.optionid}"{if $o.selected eq 'Y'} selected{/if}>{$o.option_name}{if $v.is_modifier eq 'Y' && $o.price_modifier ne 0} ({if $o.modifier_type ne '%'}{include file="currency.tpl" value=$o.price_modifier display_sign=1}{else}{$o.price_modifier}%{/if}){/if}</OPTION>
{/foreach}
</SELECT>
{/if}
</TD>
</TR>
{/if}
{/foreach}
{/if}
{if $product_options_ex ne ""}
<TR>
<TD colspan="2"><FONT id="exception_msg" color="red">{if $err ne ''}{/if}</FONT></TD>
</TR>
{if $err ne ''}
<TR>
<TD colspan="2"><FONT class="CustomerMessage">{$lng.txt_product_options_combinations_warn}:</FONT></TD>
</TR>
{foreach from=$product_options_ex item=v}
<TR>
<TD>{foreach from=$v item=o}{if $usertype eq "A"}{$o.class}{else}{$o.classtext}{/if}: {$o.option_name}
{/foreach}
</TD>
</TR>
{/foreach}
{/if}
{/if}
Thank you