/* Add custom Js styles below */ /*تخصيص رسالة الترحيب على الواتس*/ (() => { const phone = "966550719647"; const text = "زيوت بالجمله\n" + "نورتنا نخدمك بالتوصيل وين ماكنت عبر متجرنا\n" + "ايضا تقدر تطلب عن طريق المتجر والاستلام من المعرض\n" + "رابط المتجر: https://primee-one.com\n" + "رابط الموقع: https://primee-one.com"; const waUrl = `https://wa.me/${phone}?text=${encodeURIComponent(text)}`; function apply() { const links = document.querySelectorAll('a[href*="whatsapp"], a[href*="wa.me"], a[href*="api.whatsapp.com"], a[href*="#whatsapp"]'); if (!links.length) return false; let changed = 0; links.forEach(a => { const href = (a.getAttribute("href") || "").trim(); // إذا الرابط مجرد #whatsapp أو رابط داخلي نخلّيه waUrl if (href.includes("#whatsapp") || href === "#whatsapp") { a.href = waUrl; changed++; return; } // لو فيه wa.me أو api نبدله if (href.includes("wa.me") || href.includes("api.whatsapp.com") || href.toLowerCase().includes("whatsapp")) { a.href = waUrl; changed++; } }); return changed > 0; } // جرّب فورًا + بعدين على دفعات لأن Salla يعمل re-render apply(); let tries = 0; const t = setInterval(() => { tries++; const ok = apply(); if (ok || tries >= 15) clearInterval(t); }, 350); })(); /*=====================================*/ /*الكود لإضافة الأيقونات على المنتجات في سلة*/