[ic] Please help! Attributes cleared

Lewey Taylor interchange-users@interchange.redhat.com
Tue Sep 25 07:53:01 2001


Jonathan wrote
> Recalculate resubmits the entire cart contents, to upate
> attributes, qtys
> etc.
>
> What code do you have for displaying / modifying the
> attributes in your cart
> loop? I have:
>
> [if-item-field bore]Bore: [item-accessories
bore][/if-item-field]
>
> in one of my carts, which creates a combo box with the
> correct option set.

This is in the my flypage.html.
<snip>
<td><FONT size=1><B>Power</b></font></td>
<td><FONT size=1>[item-accessories power]</font></td>
<td><FONT size=1><B>Base Curve</b></font></td>
<td><FONT size=1>[item-accessories bcurve]</font></td>
<td><FONT size=1><B>Diameter</b></font></td>
<td><FONT size=1>[item-accessories diameter]</font></td>
<td><font size=1><B>Color Options</b></font></td>
<td><font size=1>[item-accessories color]</font></td>
</snip>
I did not add [list][/list] to stock foundation flypage.  My
select boxes display fine and I can select my options and
then display them in checkout.html with this code.
<snip>
<TD>[page [item-sku]]<b>[item-data products
description]</a></b><BR>
 <b>Power:&nbsp;</b>[item-modifier power]<br>
 <b>Base Curve:&nbsp;</b>[item-modifier bcurve]<br>
 <b>Diameter:&nbsp;</b>[item-modifier diameter]<br>
 <b>Color Option:&nbsp;</b>[item-modifier color]</b>
</snip>

Thanks Jonathan