`; } // ✅ Must match "page_view" exactly export function page_view(event) { gtag('event', 'page_view', { page_location: event.context.document.location.href, page_referrer: event.context.document.referrer, page_title: event.context.document.title }); } // ✅ Must match "purchase" exactly export function purchase(event) { gtag('event', 'purchase', { transaction_id: event.data.checkout.id, value: event.data.checkout.totalPrice.amount, currency: event.data.checkout.totalPrice.currencyCode, items: event.data.checkout.lineItems.map(item => ({ item_name: item.title, price: item.variant.price.amount, quantity: item.quantity })) }); } });})(self.webPixelsManager.createShopifyExtend('172065089', 'custom'));