I've been going in circles with this. digging into this CS_cart code, I want to either show or not a select option based on $amount.amount = 0. The template doesn't seem to get that amount value, even though its from the same table as option_value, but the javascript portion does. I'm trying to use the $amount.amount value:
Javacript snippet:
pr_c[{$id}] = '{$product.product_code|escape:javascript}' // define default product code
pr_a[{$id}] = {$ldelim}{$rdelim};
{foreach from=$product.option_inventory item="amount" name="ii" key="_key"}
pr_a[{$id}]['{$amount.options}|'] = {$ldelim}
'amount': '{$amount.amount}',
'product_code': '{$amount.product_code|escape:javascript}'
{$rdelim};
{/foreach}
smarty snippet:
<select name="{$name}[{$id}][product_options][{$po.option_id}]" id="option_{$id}_{$po.option_id}" onchange="fn_check_exceptions({$id}); cart_changed = true;">
{foreach from=$po.variants item="vr" name=vars}
<option value="{$vr.variant_id}" >
resultant code snippet:
<select name="product_data[203][product_options][142]"
id="option_203_142"
onchange="fn_check_exceptions(203); cart_changed = true;">
<option value="1222" selected="selected">Small </option>
<option value="1230">Medium </option>
...
<script type="text/javascript">
// amount and product code
pr_c[83] = 'AZ5008HTH' // define default product code
pr_a[83] = {};
pr_a[83]['18:1068|'] = {
'amount': '23',
'product_code': ''
};
pr_a[83]['18:185|'] = {
'amount': '16',
'product_code': ''
};
What I tried
{foreach from=$po.variants item="vr" name=vars}
pr_c[{$id}] = {$ldelim}'{$product.product_code|escape:javascript}' // define default product code
pr_a[{$id}]['{$amount.options}|'] = {$ldelim}{$amount.amount}{$rdelim}
<option value="{$vr.variant_id}:{$amount.amount} ...
This generated zeros: ...