document.addEventListener("DOMContentLoaded", function() { // 🔹 إخفاء نموذج المنتج const productForm = document.querySelector('.product-form'); if (productForm) { productForm.style.display = 'none'; } // 🔹 كود إضافة رابط المصدر عند النسخ document.addEventListener('copy', function(e) { var selection = window.getSelection(); var selectedText = selection.toString().trim(); if (selectedText.length > 0) { var words = selectedText.split(" "); if (words.length > 1) { var firstWord = words.shift(); var remainingText = words.join(" "); var pageURL = document.location.href; var linkedFirstWord = `${firstWord}`; var formattedText = linkedFirstWord + " " + remainingText; e.clipboardData.setData('text/html', formattedText); e.clipboardData.setData('text/plain', `${firstWord} (${pageURL}) ${remainingText}`); e.preventDefault(); } } }); }); .karzoun-box-poweredby, .karzoun-box-poweredby * { display: none !important; visibility: hidden !important; opacity: 0 !important; height: 0 !important; width: 0 !important; pointer-events: none !important; font-size: 0 !important; line-height: 0 !important; }