Is there something I’m missing in regards to controlling how an item’s options appear in the cart?
From what I can tell, there’s no way to just list whatever options might be available ... I instead have to specifically include tags for all potential item options? And if this is the case, do I then have to do a conditional check for each one to include some surrounding markup?
i.e.
{if has_item_options}
<tr>
<td class="cart-options" colspan="3">
{if '{item_options:Subscription_Type}' != ''}<span class="option">{item_options:Subscription_Type}</span>{/if}
{if '{item_options:Subscription_Start}' != ''}<span class="option">{item_options:Subscription_Start}</span>{/if}
</td>
</tr>
{/if}
Would be great to have an item_options iterator, like:
{exp:cartthrob:item_options row_id="{row_id}" open="<li>" close="</li>"}
Or something?
