希望你們其中一個能幫助我。我有這個簡單的jQuery代碼,一切正常,但我只是想修改此代碼,以便它只在用戶點擊「添加到購物車」時執行。Shopify的簡單jQuery代碼
這裏是鏈接到我使用的shopify主題:https://venture-theme-snowboards.myshopify.com/collections/snowboards/products/dc-mens-tone-snowboard-2015
這裏是我正在使用的代碼:
<script>
window.setTimeout(redirectCheckout, 2000);
function redirectCheckout(){
if(!(window.location.href.includes("?1"))){
window.location.href = "https://www.example.com/checkout";
}
}
</script>
任何幫助將非常apperciated !
你有訪問主題的液態文件? –