/* Add custom Js code below */ Salla.onReady(() => { // التأكد من أننا في صفحة المنتج if (window.location.href.includes('/p')) { // العثور على قائمة التابات const tabsWrapper = document.querySelector('[data-tabs-wrapper]'); if (tabsWrapper) { // إضافة زر التاب الجديد const tabsNav = tabsWrapper.querySelector('ul'); const newTab = document.createElement('li'); newTab.innerHTML = 'طريقة الاستخدام'; tabsNav.appendChild(newTab); // إضافة محتوى التاب const tabsContent = tabsWrapper.querySelector('.tab-content'); const newContent = document.createElement('div'); newContent.id = 'usage'; newContent.className = 'tab-pane fade'; newContent.innerHTML = `

طريقة الاستخدام

محتوى طريقة الاستخدام هنا

`; tabsContent.appendChild(newContent); } } }); document.querySelectorAll('.s-block--banners article').forEach((article, index) => { const link = document.createElement('a'); link.href = [ 'https://movewears.com/%D8%BA%D9%8A%D8%A7%D8%B1%D8%A7%D8%AA%20%D8%A7%D9%84%D8%AF%D9%88%D8%B1%D8%A9%20%D8%A7%D9%84%D8%B4%D9%87%D8%B1%D9%8A%D8%A9/c758650812', 'https://movewears.com/%D8%B3%D8%B1%D9%88%D8%A7%D9%84-%D9%86%D8%B3%D8%A7%D8%A6%D9%8A-%D9%84%D8%B3%D9%84%D8%B3-%D8%A7%D9%84%D8%A8%D9%88%D9%84/p1053769507', 'https://movewears.com/%D8%B9%D8%B1%D9%88%D8%B6-%D9%85%D8%AC%D9%85%D9%88%D8%B9%D8%A7%D8%AA/c1000220242', 'https://movewears.com/%D9%88%D8%B9%D9%8A-%D8%A7%D9%84%D8%AD%D9%8A%D8%B6-%D8%B1%D8%AD%D9%84%D8%A9-%D9%84%D8%A7%D9%83%D8%AA%D8%B4%D8%A7%D9%81-%D9%82%D9%88%D8%AA%D9%83-%D8%A7%D9%84%D8%A3%D9%86%D8%AB%D9%88%D9%8A%D8%A9/p1737308640', 'https://movewears.com/%D9%83%D9%8A%D8%B3-%D8%A7%D9%84%D8%BA%D9%8A%D8%A7%D8%B1-%D8%A7%D9%84%D8%A5%D8%B6%D8%A7%D9%81%D9%8A-%D9%83%D9%8A%D8%B3-%D8%BA%D8%B3%D9%8A%D9%84/p1923535903' ][index]; // غيّري الروابط حسب الترتيب link.style.position = 'absolute'; link.style.inset = '0'; link.style.zIndex = '10'; article.style.position = 'relative'; article.appendChild(link); }); /* // انتظر حتى تحميل الصفحة بالكامل (مع مراعاة العناصر الديناميكية) document.addEventListener('DOMContentLoaded', function() { const titles = [ "الدورة الشهرية", "سلس البول", "عروض المجموعات", "وعي الحيض", "الأكسسوارات" ]; // تحديد العناصر بدقة بناءً على الهيكل الجديد const cards = document.querySelectorAll('article.relative.isolate.flex.flex-col'); cards.forEach((card, index) => { if (index < titles.length) { // إنشاء عنصر العنوان const titleContainer = document.createElement('div'); // إضافة التنسيقات لتتناسب مع تصميم الموقع titleContainer.style.cssText = ` text-align: center; margin-top: 15px; color: #fff; font-size: 16px; font-weight: 500; position: absolute; bottom: 30px; left: 0; right: 0; z-index: 20; `; titleContainer.textContent = titles[index]; // إدراج العنوان داخل عنصر الـ article card.appendChild(titleContainer); } }); }); */