// Replace footer credit with: "الحقوق محفوظة | 2025 — تم التطوير بواسطة بداية" (function () { const LINK_CLASS = 'footer-dev-link'; const LINK_HTML = `بداية`; const rewrite = (root = document) => { root.querySelectorAll('.made_perfection p').forEach(p => { // Skip if already pointing to bidayaspace.com if (p.querySelector(`a.${LINK_CLASS}[href^="https://bidayaspace.com"]`)) return; p.innerHTML = `الحقوق محفوظة | 2025 — تم التطوير بواسطة ${LINK_HTML}`; }); }; // Run now/when DOM is ready if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', () => rewrite()); } else { rewrite(); } // Re-apply if your theme re-hydrates/updates the footer new MutationObserver(() => rewrite()) .observe(document.documentElement, { subtree: true, childList: true }); })();