Shopify - 正常价格未显示在销售价格旁边

时间:2017-12-04 14:34:23

标签: php html shopify liquid

如果我将产品放在销售中,在收款页面上,销售价格旁边会有划掉的正常价格。但是,在产品页面上,销售价格仅显示为正常价格,而正常价格仅在您打开产品页面时加载1秒钟,然后消失。有人可以帮忙吗?

<div class="product-single__prices">
    {% if product.compare_at_price > product.price %}
      <span id="ComparePriceA11y" class="visually-hidden">{{ 'products.product.sale_price' | t }}</span>
    {% else %}
      <span id="PriceA11y" class="visually-hidden">{{ 'products.product.regular_price' | t }}</span>
    {% endif %}
    <span id="ProductPrice" class="product-single__price" itemprop="price" content="{{ product.price | divided_by: 100.00 }}">
      {{ product.price | money }}
    </span>

    {% if product.compare_at_price > product.price %}
      <span id="PriceA11y" class="visually-hidden">{{ 'products.product.regular_price' | t }}</span>
      <s id="ComparePrice" class="product-single__sale-price">
        {{ product.compare_at_price_max | money }}
      </s>
    {% endif %}
  </div>

0 个答案:

没有答案