3

当我选择不同的修饰符选项时,我似乎无法让商店动态更新产品的价格。

我已将商店放入沙盒环境中,其中只有一种产品具有 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

任何帮助将不胜感激,因为这非常紧迫。

干杯丹

4

1 回答 1

3

动态产品变量基于 css 类,它告诉内置 javascript 在哪里更新价格。

https://exp-resso.com/docs/store/tags/product.html#dynamic-product-variables

要使其正常工作,只需将您的价格包装在一个<span>元素中,如下所示:

<span class="store_product_price">{price}</span>

另请注意,1.6.0 中有一个错误导致它在某些情况下中断(尽管您提到您正在运行 1.6.1,所以这应该不是问题)。

于 2012-11-10T01:11:00.693 回答