document.addEventListener('DOMContentLoaded', function () { /* ========================================= PRODUCT PAGE ONLY ========================================= */ if (!window.location.pathname.includes('/shop/product')) { return; } /* ========================================= PRODUCT CONTAINER ========================================= */ var productContainer = document.querySelector('#product_detail'); if (!productContainer) { return; } /* ========================================= PRODUCT DATA ========================================= */ var productId = productContainer.dataset.productId || ''; var productName = productContainer.dataset.productName || ''; var productCategory = productContainer.dataset.productCategory || ''; var productPrice = parseFloat(productContainer.dataset.price) || 0; /* ========================================= VALIDATE PRICE ========================================= */ if (productPrice <= 0) { return; } /* ========================================= VIEW CONTENT ========================================= */ fbq('track', 'ViewContent', { content_ids: [productId], content_name: productName, content_category: productCategory, content_type: 'product', value: productPrice, currency: 'INR' }); /* ========================================= ADD TO CART ========================================= */ document.addEventListener('click', function (e) { var addToCartBtn = e.target.closest('#add_to_cart'); if (addToCartBtn) { fbq('track', 'AddToCart', { content_ids: [productId], content_name: productName, content_category: productCategory, content_type: 'product', value: productPrice, currency: 'INR', num_items: 1 }); } }); /* ========================================= BUY NOW ========================================= */ document.addEventListener('click', function (e) { var buyNowBtn = e.target.closest('.o_we_buy_now'); if (buyNowBtn) { fbq('track', 'AddToCart', { content_ids: [productId], content_name: productName, content_category: productCategory, content_type: 'product', value: productPrice, currency: 'INR', num_items: 1 }); } }); }); /* ========================================= INITIATE CHECKOUT ========================================= */ if ( window.location.pathname.includes('/shop/checkout') || window.location.pathname.includes('/shop/payment') ) { fbq('track', 'InitiateCheckout', { currency: 'INR' }); } /* ========================================= ADD PAYMENT INFO ========================================= */ if ( window.location.pathname.includes('/shop/payment') ) { fbq('track', 'AddPaymentInfo', { currency: 'INR' }); } /* ========================================= PURCHASE ========================================= */ if ( window.location.pathname.includes('/shop/confirmation') || window.location.pathname.includes('/payment/status') ) { fbq('track', 'Purchase', { currency: 'INR' }); }