微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

变体选择器没有响应 (Shopify)

如何解决变体选择器没有响应 (Shopify)

嘿,我刚刚在产品页面添加了我自己的变体选择器。但它没有响应。它没有改变价格。旧的工作正常,但我的变体选择器不起作用。我认为它的js代码问题。

var selectCallback = function(variant,selector) {
var $addToCart = $('#button-cart'),$addToCartBuy = $('#button-cart-buy'),$addToCartSticky = $('#button-cart-sticky'),$productPrice = $('#productPrice'),$comparePrice = $('#comparePrice'),$variantQuantity = $('#variantQuantity'),$quantityElements = $('.quantity-selector,label + .js-qty'),$addToCartText = $('#button-cart'),$featuredImage = $('#productPhotoImg');
if (variant) {
 // Regardless of stock,update the product price
        Shopify.money_format = '{{shop.money_format }}'; 

        //var customPrice = timber.formatMoney( Shopify.formatMoney(variant.price,Shopify.money_format) );
        var a11yPrice = Shopify.formatMoney(variant.price,Shopify.money_format);
        // var customPriceFormat = ' <span aria-hidden="true">' + customPrice + '</span>';
        var customPriceFormat = ' <span class="visually-hidden">' + a11yPrice + '</span>';
        $productPrice.html(customPriceFormat);

        // Also update and show the product's compare price if necessary
        {% if settings.product_show_compare_at_price %}
        if ( variant.compare_at_price > variant.price ) {
          var a11yComparePrice = Shopify.formatMoney(variant.compare_at_price,Shopify.money_format);
          comparePriceFormat = ' <span class="visually-hidden">' + a11yComparePrice + '</span>';
          $comparePrice.html(comparePriceFormat);
          $comparePrice.show();
        } else {
          $comparePrice.hide();
        }
        {% endif %} } 
    };

    jQuery(function($) {
      var product = {{ product | json }};
      new Shopify.OptionSelectors('productSelect',{
        product: product,onVariantSelected: selectCallback,enableHistoryState: true
      });


    }); 

我应该在这里更改什么才能让我的变体选择器工作?

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。