// Create the meta tag const meta = document.createElement('meta'); // Set attributes meta.name = "facebook-domain-verification"; meta.content = "a0s7fzeeam7741myxmx4vdbhh8d3kn"; // Append to document.head.appendChild(meta); /* Add custom Js code below */ const whatsappLink = document.createElement('a'); whatsappLink.href = 'https://wa.me/966538455885'; // Replace with your WhatsApp number whatsappLink.target = '_blank'; whatsappLink.style.position = 'fixed'; whatsappLink.style.bottom = '20px'; whatsappLink.style.right = '20px'; whatsappLink.style.zIndex = '2'; whatsappLink.className = 'whatsapp-link'; // Create the image element const whatsappIcon = document.createElement('img'); whatsappIcon.src = 'https://cdn-icons-png.flaticon.com/512/733/733585.png'; // WhatsApp icon from flaticon whatsappIcon.alt = 'Chat on WhatsApp'; whatsappIcon.style.width = '60px'; whatsappIcon.style.height = '60px'; whatsappIcon.style.borderRadius = '0%'; //whatsappIcon.style.boxShadow = '0 4px 8px rgba(0,0,0,0.2)'; whatsappIcon.style.cursor = 'pointer'; whatsappIcon.className = 'whatsapp-icon'; // Append the image to the link, and then the link to the body whatsappLink.appendChild(whatsappIcon); document.body.appendChild(whatsappLink); const banner = document.querySelector('.banner'); /*if (banner) { // Create the anchor element const linkButton = document.createElement('a'); linkButton.href = 'https://fresh-sa.com/latest-products'; // Replace with your desired URL linkButton.textContent = 'تسوق الآن'; linkButton.className = 'banner-button'; //linkButton.target = '_blank'; // Optional: open in new tab // Append the link to the banner banner.appendChild(linkButton); }*/