jQuery(".bonus_info").hide(); window.addEventListener("load", (event) => { jQuery(".bonus_info").hide(); if(__st && __st.cid){ setTimeout(function(){ data = JSON.stringify({st: __st,shopify:Shopify}); url = "//dl7y9fehbdabg.cloudfront.net/system/shopify"; jQuery.ajax({ type: "POST", url: url, data: data, success: function(res){ console.log(res); if(res.data.bonus > 0){ jQuery(".bonus_info").show(); jQuery(".bonus_amount").html(String(res.data.bonus).replace(".",",")); jQuery(".bonus_link").on("click",function(){ jQuery.ajax({ type: "GET", url: "/discount/" + encodeURIComponent(res.data.voucher), success: function(res){ document.location = "/cart"; } }); }); jQuery(".bonus_voucher").html(res.data.voucher); } }, dataType: "json" }); },500); } });