当用户从产品变体中选择第一个选项时,隐藏“添加到购物车”和“贝宝”按钮,否则显示两个按钮。
$(document).ready(function(){
$("select.single-option-selector").change(function(){
var first = $(this).children("option:selected").val();
var second = $('option:eq(0)').val();
if (first == second){
$("#addToCart-product-template").hide();
$(".shopify-payment-button__button").hide();
}
else{
$("#addToCart-product-template").show();
$(".shopify-payment-button__button").show();
}
});
});