// function waitForCheckout(callback, timeout = 30000) { // Increased to 30s const start = Date.now(); function check() { if (Shopify && Shopify.checkout && Shopify.checkout.order_id) { console.log('Shopify.checkout available:', Shopify.checkout); callback(); } else if (Date.now() - start < timeout) { setTimeout(check, 100); } else { console.log('Shopify.checkout not available after timeout'); // Fallback after additional delay setTimeout(() => { if (Shopify && Shopify.checkout && Shopify.checkout.order_id) { const fallbackConversionData = { 'send_to': `${conversionId}/${conversionLabel}`, 'transaction_id': Shopify.checkout.order_id.toString(), 'value': parseFloat((Shopify.checkout.total_price / 100).toFixed(2)), 'currency': Shopify.checkout.currency }; if (typeof gtag === 'function') { gtag('event', 'conversion', fallbackConversionData); console.log('Fallback conversion sent:', fallbackConversionData); } } else { console.error('Final fallback failed - no Shopify.checkout'); } }, 10000); // Additional 10s wait } } check(); } // Check URL to ensure we're on a thank-you page const currentPath = window.location.pathname; console.log('Checking URL path:', currentPath); if (currentPath.startsWith('/checkouts/') && currentPath.endsWith('/thank-you')) { waitForCheckout(() => { try { // Check for crypto API support if (!window.crypto || !window.crypto.subtle) { console.error('Crypto API not supported'); const basicConversionData = { 'send_to': `${conversionId}/${conversionLabel}`, 'transaction_id': Shopify.checkout.order_id.toString(), 'value': parseFloat((Shopify.checkout.total_price / 100).toFixed(2)), 'currency': Shopify.checkout.currency }; if (typeof gtag === 'function') { gtag('event', 'conversion', basicConversionData); console.log('Conversion sent without user_data:', basicConversionData); } return; } const customer = Shopify.checkout.customer || {}; const address = customer.default_address || {}; const customerData = { email: (customer.email || "").toLowerCase().trim(), phone: (customer.phone || "").replace(/\D/g, ""), firstName: (customer.first_name || "").trim(), lastName: (customer.last_name || "").trim(), city: (address.city || "").trim(), state: (address.province || "").trim(), country: (address.country || "").trim(), zip: (address.zip || "").trim() }; const sha256 = function(input) { if (!input) return Promise.resolve(""); const encoder = new TextEncoder(); const data = encoder.encode(input); return crypto.subtle.digest("SHA-256", data).then((hashBuffer) => { return Array.from(new Uint8Array(hashBuffer)) .map((b) => b.toString(16).padStart(2, "0")) .join(""); }); }; Promise.all([ sha256(customerData.email), sha256(customerData.phone), sha256(customerData.firstName), sha256(customerData.lastName), sha256(customerData.city), sha256(customerData.state), sha256(customerData.country), sha256(customerData.zip) ]).then(([hashedEmail, hashedPhone, hashedFirst, hashedLast, hashedCity, hashedState, hashedCountry, hashedZip]) => { const conversionData = { 'send_to': `${conversionId}/${conversionLabel}`, 'transaction_id': Shopify.checkout.order_id.toString(), 'value': parseFloat((Shopify.checkout.total_price / 100).toFixed(2)), 'currency': Shopify.checkout.currency, 'user_data': { 'email': hashedEmail || undefined, 'phone_number': hashedPhone || undefined, 'address': { 'first_name': hashedFirst || undefined, 'last_name': hashedLast || undefined, 'city': hashedCity || undefined, 'region': hashedState || undefined, 'country': hashedCountry || undefined, 'postal_code': hashedZip || undefined } } }; if (typeof gtag === 'function') { gtag('event', 'conversion', conversionData); console.log('Enhanced Conversion sent:', conversionData); } else { console.error('gtag not available'); } }).catch(error => { console.error('Hashing failed:', error); const fallbackConversionData = { 'send_to': `${conversionId}/${conversionLabel}`, 'transaction_id': Shopify.checkout.order_id.toString(), 'value': parseFloat((Shopify.checkout.total_price / 100).toFixed(2)), 'currency': Shopify.checkout.currency }; if (typeof gtag === 'function') { gtag('event', 'conversion', fallbackConversionData); console.log('Fallback conversion sent:', fallbackConversionData); } }); } catch (error) { console.error('Script execution failed:', error); const fallbackConversionData = { 'send_to': `${conversionId}/${conversionLabel}`, 'transaction_id': Shopify.checkout.order_id.toString(), 'value': parseFloat((Shopify.checkout.total_price / 100).toFixed(2)), 'currency': Shopify.checkout.currency }; if (typeof gtag === 'function') { gtag('event', 'conversion', fallbackConversionData); console.log('Fallback conversion sent due to script error:', fallbackConversionData); } } }); } else { console.log('Not on thank-you page - Conversion not fired:', currentPath); } });})(self.webPixelsManager.createShopifyExtend('127238297', 'custom'));