Posted on 04/09/2017 16:13:15
Hi Kurt
OK - feature was implemented in 8.7, so you should be ok. See template snippet below - I think I gave you some wrong info on the naming of the quantity field.-
<div id="includingproducts">
<!--@LoopStart(BOMProducts)-->
<!--@HeaderStart-->
<h2>
Including products</h2>
<ul>
<!--@HeaderEnd-->
<input type="text" value="1" name="<!--@Ecom:Product.ID-->Quantity" />
<li class="listitem<!--@BOMProducts.LoopMod2-->"><a href="<!--@Ecom:Product.Link.Clean.PID-->">
<!--@Ecom:Product.Name-->
</a></li>
<!--@FooterStart-->
</ul>
<!--@FooterEnd-->
<!--@LoopEnd(BOMProducts)-->
<table cellspacing="0" cellpadding="0" border="0">
<!--@LoopStart(BOMConfigurators)-->
<tr>
<td>
<b><!--@Ecom:Product.Configurator.Name--></b><br>
<input type="text" value="1" name="<!--@Ecom:Product.Configurator.ID-->Quantity" />
<select name="<!--@Ecom:Product.Configurator.ID-->">
<option value="">Nothing</option>
<!--@LoopStart(ConfiguratorProducts)-->
<option value="<!--@Ecom:Product.ID-->" <!--@Ecom:Product.Configurator.Selected-->><!--@Ecom:Product.Name--> (<!--@Ecom:Product.ActualPrice-->)</option>
<!--@LoopEnd(ConfiguratorProducts)-->
</SELECT>
</td>
</tr>
<!--@LoopEnd(BOMConfigurators)-->
</table>