Good Day to you all master
i have small problem adding the Products Configurator into the cart
if i put 3 quantity in the "text" then i will click the add to cart button, they will add into the cart, i have problem putting which value i need to put in the form,
here is my site
http://dev.amadiinc....product_id=1110
also this is my code below
<div class="form-field{if !$capture_options_vs_qty} product-list-field{/if}{if $settings.Appearance.quantity_changer == "Y"} changer{/if}" id="qty_{$obj_prefix}{$obj_id}">
<label for="qty_count_{$obj_prefix}{$obj_id}">{$quantity_text|default:$lang.quantity}:</label>
{if $product.qty_content}
<select name="product_data[{$obj_id}][amount]" id="qty_count_{$obj_prefix}{$obj_id}">
{assign var="a_name" value="product_amount_`$obj_prefix``$obj_id`"}
{assign var="selected_amount" value=false}
{foreach name="`$a_name`" from=$product.qty_content item="var"}
<option value="{$var}" {if $product.selected_amount && ($product.selected_amount == $var || ($smarty.foreach.$a_name.last && !$selected_amount))}{assign var="selected_amount" value=true}selected="selected"{/if}>{$var}</option>
{/foreach}
</select>
{else}
{if $settings.Appearance.quantity_changer == "Y"}
<div class="center valign cm-value-changer">
<a class="cm-increase"><img src="{$images_dir}/icons/up_arrow.gif" width="11" height="5" border="0" /></a>
{/if}
<input type="text" size="5" class="input-text-short cm-amount" id="qty_count_{$obj_prefix}{$obj_id}" name="product_data[{$obj_id}][amount]" value="{$default_amount}" />
{if $settings.Appearance.quantity_changer == "Y"}
<a class="cm-decrease"><img src="{$images_dir}/icons/down_arrow.gif" width="11" height="5" border="0" /></a>
</div>
{/if}
{/if}
</div>