当我选择不同的修饰符选项时,我似乎无法让商店动态更新产品的价格。
我已将商店放入沙盒环境中,其中只有一种产品具有 1 个修饰符:大小。有小号和大号两种尺寸。大号的差价为 10 美元。
当我将产品添加到购物车时,会考虑价格差异,但是在添加到购物车之前选择实际选项时,我需要动态更改价格差异。
我没有自己的自定义模板,只是使用提供的示例之一,问题仍然存在。
代码:
<div class="control-group">
<label class="control-label">Price</label>
<div class="controls">
{if on_sale}
<del>{regular_price}</del><br />
{price}
<span class="label label-success">Save {you_save} ({you_save_percent}%)</span>
{if:else}
{regular_price}
{/if}
</div>
</div>
{modifiers}
<div class="control-group">
<label class="control-label" for="{modifier_input_name}">{modifier_name}</label>
<div class="controls">
{if modifier_type == 'var' OR modifier_type == 'var_single_sku'}
<select id="{modifier_input_name}" name="{modifier_input_name}">
{modifier_options}
<option value="{option_id}">
{option_name} {if price_mod_val} ({price_mod}) {/if}
</option>
{/modifier_options}
</select>
{if:else}
<input type="text" id="{modifier_input_name}" name="{modifier_input_name}" value="" />
{/if}
<p class="help-block">{modifier_instructions}</p>
</div>
</div>
{/modifiers}
EECMS 版本:1.5.2 商店:1.6.1 PHP:5.3.6 环境:OSX 上的 MAMP
任何帮助将不胜感激,因为这非常紧迫。
干杯丹