window.onload=function(){window.print()}

');w.document.close();var n=(parseInt(localStorage.getItem(tKey())||'0')+1);localStorage.setItem(tKey(),n);var sc=document.getElementById('scnt');if(sc)sc.textContent=n;}; window.izDl=function(){if(!outURL)return;var doc=new window.jspdf.jsPDF({orientation:'landscape',unit:'mm',format:[160,51]});doc.addImage(outURL,'PNG',0,0,160,51,'','FAST');doc.save('sticker_160x51.pdf');}; function mk(w,h){var c=document.createElement('canvas');c.width=w;c.height=h;return c;} });

' + audiences.map(a => '' + a.icon + '
' + a.name + '
' + a.desc + '
בחרו עכשיו ←
').join('') + '

'; catSec.parentNode.insertBefore(section, catSec.nextSibling); } function injectUSPBanner() { if (!document.body.classList.contains('home')) return; if (document.querySelector('.ktwo-usp-banner')) return; const sections = Array.from(document.querySelectorAll('section.elementor-top-section')); const heroSec = sections.find(s => s.innerText && s.innerText.includes('kTwo 2 LTD') && s.innerText.includes('מחירים ישירים')); if (!heroSec) return; const usp = document.createElement('section'); usp.className = 'ktwo-usp-banner'; usp.innerHTML = '

🚚
משלוח חינם
בהזמנות מעל ₪500
תוך 1-3 ימי עסקים
🛡️
אחריות מלאה
עד 3 שנים על כל מוצר
שירות מהיר ואדיב
♻️
חיסכון עד 60%
מחשבים מחודשים מקצועית
איכות פרימיום במחיר נוח
🔄
החזרה תוך 30 יום
לא מרוצה? כסף חזרה!
החזרה קלה ומהירה

'; heroSec.parentNode.insertBefore(usp, heroSec.nextSibling); } function injectComparison() { if (!document.body.classList.contains('home')) return; if (document.querySelector('.ktwo-comparison-section')) return; const aud = document.querySelector('.ktwo-audiences-section'); if (!aud) return; const cmp = document.createElement('section'); cmp.className = 'ktwo-comparison-section'; cmp.innerHTML = '

חדש או מחודש? אנחנו מציעים את שניהם!

בחרו את הפתרון הנכון בשבילכם - אנחנו ב-KTWO מתמחים גם וגם

המהדורה החדישה
מחשבים חדשים
דור 2026, חבילת אחריות מלאה
לקטלוג המחשבים החדשים ←
חיסכון עד 60%
♻️
מחשבים מחודשים
אותם ביצועים, מחצית המחיר
לקטלוג המחשבים המחודשים ←

'; aud.parentNode.insertBefore(cmp, aud.nextSibling); } async function fetchDealProduct() { try { // Paginate through tags to find deal tag (may not be in first 100) let dealTag = null; for (let page = 1; page <= 8; page++) { const r = await fetch('/wp-json/wc/store/v1/products/tags?per_page=100&page=' + page); if (!r.ok) break; const tags = await r.json(); if (!tags || tags.length === 0) break; dealTag = tags.find(t => t.name === 'מבצע-יום' || t.name === 'מבצע היום' || (t.slug || '').includes('deal')); if (dealTag) break; if (tags.length < 100) break; } if (!dealTag) return null; const pr = await fetch('/wp-json/wc/store/v1/products?tag=' + dealTag.id + '&per_page=1'); if (!pr.ok) return null; const products = await pr.json(); return (products && products.length > 0) ? products[0] : null; } catch(e) { console.log('[KTWO] deal fetch:', e); return null; } } let _ktwoDealInjecting = false; async function injectDailyDeal() { if (!document.body.classList.contains('home')) return; if (document.querySelector('.ktwo-daily-deal')) return; if (_ktwoDealInjecting) return; _ktwoDealInjecting = true; const usp = document.querySelector('.ktwo-usp-banner'); if (!usp) { _ktwoDealInjecting = false; return; } const endTime = new Date(); endTime.setHours(23, 59, 59, 999); const dealProduct = await fetchDealProduct(); const banner = document.createElement('section'); banner.className = 'ktwo-daily-deal'; let htmlContent = ''; if (dealProduct) { const productTitle = dealProduct.name || 'מבצע מיוחד'; const productLink = dealProduct.permalink || '#'; const productImage = (dealProduct.images && dealProduct.images[0]?.src) || ''; const priceHtml = dealProduct.prices?.price_html || ''; // Savings badge removed by user request let savings = ''; htmlContent = '

🔥 מבצע היום

' + productTitle + '

' + (priceHtml ? '
' + priceHtml + '
' : '') + savings + '
00שעות
:
00דקות
:
00שניות
' + (productImage ? '' : '') + 'קנה עכשיו ←

'; } else { htmlContent = '

🔥 מבצע היום

חיסכון של עד 60% על מחשבים מחודשים

איכות פרימיום במחיר מצוין · אחריות מלאה עד 3 שנים · משלוח חינם

00שעות
:
00דקות
:
00שניות
לקטלוג המבצעים ←

'; } banner.innerHTML = htmlContent; usp.parentNode.insertBefore(banner, usp); function updateCountdown() { const cd = document.querySelector('.ktwo-daily-deal-countdown'); if (!cd) return; const endTs = parseInt(cd.getAttribute('data-end')); const diff = endTs - Date.now(); if (diff <= 0) return; const h = Math.floor(diff / 3600000); const m = Math.floor((diff % 3600000) / 60000); const s = Math.floor((diff % 60000) / 1000); const set = (u, v) => { const e = cd.querySelector('[data-unit="' + u + '"]'); if (e) e.textContent = String(v).padStart(2, '0'); }; set('hours', h); set('minutes', m); set('seconds', s); } updateCountdown(); setInterval(updateCountdown, 1000); } // === WhatsApp Floating Button === function injectWhatsApp() { if (document.querySelector('.ktwo-whatsapp-btn')) return; const phone = '972504511358'; const message = encodeURIComponent('שלום, אני מעוניין במידע על מוצר באתר KTWO'); const url = 'https://wa.me/' + phone + '?text=' + message; const btn = document.createElement('a'); btn.href = url; btn.target = '_blank'; btn.rel = 'noopener noreferrer'; btn.className = 'ktwo-whatsapp-btn'; btn.innerHTML = ''; const style = document.createElement('style'); style.textContent = '.ktwo-whatsapp-btn{position:fixed;bottom:24px;left:24px;width:60px;height:60px;background:#25D366;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 16px rgba(37,211,102,0.4);z-index:99999;text-decoration:none;animation:ktwoWAPulse 2s infinite}@keyframes ktwoWAPulse{0%,100%{box-shadow:0 4px 16px rgba(37,211,102,0.4),0 0 0 0 rgba(37,211,102,0.7)}70%{box-shadow:0 4px 16px rgba(37,211,102,0.4),0 0 0 16px rgba(37,211,102,0)}}.ktwo-whatsapp-btn img.emoji{display:none}@media(max-width:600px){.ktwo-whatsapp-btn{bottom:16px;left:16px;width:52px;height:52px}.ktwo-whatsapp-btn svg{width:28px;height:28px}}'; document.head.appendChild(style); document.body.appendChild(btn); } // === Full Category Grid (all categories) === let _ktwoCatInjecting = false; async function injectCategoriesGrid() { if (!document.body.classList.contains('home')) return; if (document.querySelector('.ktwo-categories-section')) return; if (_ktwoCatInjecting) return; _ktwoCatInjecting = true; let categories = []; try { const r = await fetch('/wp-json/wc/store/v1/products/categories?per_page=50&hide_empty=true'); if (r.ok) categories = await r.json(); } catch(e) {} // Filter to top-level meaningful categories (exclude Uncategorized) const topCats = categories.filter(c => c.parent === 0 && c.count > 0 && c.slug !== 'uncategorized'); if (topCats.length === 0) return; // Fallback icons by slug const iconMap = { 'laptop': '💻', 'ktwo-pro': '🏢', 'tv': '📺', 'tablets': '📱', 'router-switch-network': '🌐', 'accessories': '🎧', 'printer': '🖨️', 'desktop': '🖥️', 'monitor': '🖥️', 'desktop-monitor': '🖥️', 'audio': '🔊', 'gaming': '🎮', 'mini-pc': '📦', 'projector': '📽️' }; const grid = topCats.map(c => { const link = c.permalink || ('/category/' + c.slug + '/'); const imgHTML = c.image?.src ? '' + c.name + '' : '

' + (iconMap[c.slug] || '📦') + '

'; return '' + imgHTML + '

' + c.name + '
' + '
' + c.count + ' מוצרים
' + '
'; }).join(''); const section = document.createElement('section'); section.className = 'ktwo-categories-section'; section.innerHTML = '

כל הקטגוריות

' + '

מצאו בדיוק את מה שאתם מחפשים - מבחר רחב של מוצרי IT לבית, לעסק ולגיימינג

' + '

' + '' + '
' + grid + '
' + '' + '

'; // Setup nav buttons setTimeout(() => { const gridEl = section.querySelector('.ktwo-categories-grid'); const leftBtn = section.querySelector('.ktwo-cat-nav.left'); const rightBtn = section.querySelector('.ktwo-cat-nav.right'); if (gridEl && leftBtn && rightBtn) { leftBtn.addEventListener('click', () => gridEl.scrollBy({left: -400, behavior: 'smooth'})); rightBtn.addEventListener('click', () => gridEl.scrollBy({left: 400, behavior: 'smooth'})); } }, 100); // Insert before the USP banner OR before audience section const usp = document.querySelector('.ktwo-usp-banner'); const audience = document.querySelector('.ktwo-audiences-section'); if (audience) { audience.parentNode.insertBefore(section, audience); } else if (usp) { usp.parentNode.insertBefore(section, usp.nextSibling); } } // === Update shipping time from WC Store API === async function updateShippingTimes() { const products = document.querySelectorAll('.woocommerce ul.products li.product:not(.product-category)'); const slugSet = new Set(); products.forEach(p => { const link = p.querySelector('a[href*="/product/"]'); if (link) { const m = link.href.match(/\/product\/([^/?]+)/); if (m) slugSet.add(m[1]); } }); if (slugSet.size === 0) return; try { // Fetch all products in batch const slugs = Array.from(slugSet); const r = await fetch('/wp-json/wc/store/v1/products?per_page=100&slug=' + slugs.join(',')); if (!r.ok) return; const items = await r.json(); // Map slug -> shipping time const shipMap = {}; items.forEach(item => { const attrs = item.attributes || []; const ship = attrs.find(a => a.name === 'זמן משלוח' || a.taxonomy === 'pa_shipping_time'); if (ship && ship.terms && ship.terms[0]) { shipMap[item.slug] = ship.terms[0].name; } }); // Apply to cards products.forEach(p => { const link = p.querySelector('a[href*="/product/"]'); if (!link) return; const m = link.href.match(/\/product\/([^/?]+)/); if (!m) return; const slug = m[1]; const shipTime = shipMap[slug]; const valEl = p.querySelector('.ktwo-card-attr-value'); if (!valEl) return; if (shipTime) { valEl.textContent = shipTime; // Apply class based on time valEl.classList.remove('ktwo-fast-shipping', 'ktwo-slow-shipping'); if (shipTime.includes('24')) { valEl.classList.add('ktwo-fast-shipping'); } else if (shipTime.includes('72')) { valEl.classList.add('ktwo-medium-shipping'); } else { valEl.classList.add('ktwo-slow-shipping'); } } }); } catch(e) { console.log('[KTWO] shipping fetch:', e); } } // === KTWO Mondial 2026 Banner === function ensureRecentlyViewedStyles() { if (document.getElementById('ktwo-rv-styles')) return; var style = document.createElement('style'); style.id = 'ktwo-rv-styles'; style.textContent = '.ktwo-recently-viewed{max-width:1200px;margin:32px auto;padding:0 16px;direction:rtl}' + '.ktwo-recently-viewed .ktwo-rv-inner{background:#fff;border:1px solid #e5e7eb;border-radius:12px;padding:20px 16px 16px;box-shadow:0 1px 3px rgba(0,0,0,0.04)}' + '.ktwo-rv-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:14px}' + '.ktwo-rv-h2{font-size:20px !important;font-weight:700 !important;margin:0 !important;color:#0f1111 !important;display:flex;align-items:center;gap:8px}' + '' + '.ktwo-rv-clear{background:none;border:none;color:#007185;font-size:13px;cursor:pointer;padding:4px 8px;font-family:inherit}' + '.ktwo-rv-clear:hover{text-decoration:underline;color:#c45500}' + '.ktwo-rv-scroll{display:flex;gap:12px;overflow-x:auto;scroll-snap-type:x mandatory;padding-bottom:8px;-webkit-overflow-scrolling:touch}' + '.ktwo-rv-scroll::-webkit-scrollbar{height:6px}' + '.ktwo-rv-scroll::-webkit-scrollbar-thumb{background:#d1d5db;border-radius:3px}' + '.ktwo-rv-scroll::-webkit-scrollbar-track{background:#f3f4f6;border-radius:3px}' + '.ktwo-rv-card{flex:0 0 160px;background:#fff;border:1px solid #e5e7eb;border-radius:8px;padding:10px;text-decoration:none !important;color:#0f1111 !important;scroll-snap-align:start;transition:border-color .2s,transform .2s,box-shadow .2s;display:flex;flex-direction:column}' + '.ktwo-rv-card:hover{border-color:#fbbf24;transform:translateY(-2px);box-shadow:0 4px 12px rgba(0,0,0,0.08)}' + '.ktwo-rv-imgwrap{width:100%;aspect-ratio:1;display:flex;align-items:center;justify-content:center;background:#fafafa;border-radius:6px;margin-bottom:8px;overflow:hidden}' + '.ktwo-rv-imgwrap img{max-width:100%;max-height:100%;object-fit:contain}' + '.ktwo-rv-noimg{font-size:36px;opacity:.4}' + '.ktwo-rv-title{font-size:12px;font-weight:500;line-height:1.3;margin-bottom:6px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;min-height:32px}' + '.ktwo-rv-price{font-size:14px;font-weight:700;color:#b12704;margin-top:auto}' + '@media (max-width:768px){.ktwo-recently-viewed{margin:20px 8px}.ktwo-rv-card{flex:0 0 130px}.ktwo-rv-h2{font-size:16px !important}}'; document.head.appendChild(style); } function trackRecentlyViewed() { if (!document.body.classList.contains('single-product')) return; var cartBtn = document.querySelector('button[name="add-to-cart"], input[name="add-to-cart"]'); var pid = cartBtn ? (cartBtn.value || cartBtn.getAttribute('value')) : null; if (!pid) { var pidMeta = document.querySelector('.product[id^="product-"]'); if (pidMeta) pid = pidMeta.id.replace('product-',''); } if (!pid) return; var title = document.querySelector('.product_title, .entry-title'); var img = document.querySelector('.woocommerce-product-gallery__image img, .wp-post-image, .ktwo-pdp-main-img'); var priceEl = null; var allAmounts = document.querySelectorAll('.summary .price .amount, .summary .price bdi'); for (var ai=0; ai cutoff; }).slice(0, 12); try { localStorage.setItem('ktwo_recently_viewed', JSON.stringify(list)); } catch(e) {} } function injectRecentlyViewed() { if (!document.body.classList.contains('home')) return; if (document.querySelector('.ktwo-recently-viewed')) return; ensureRecentlyViewedStyles(); var list = []; try { list = JSON.parse(localStorage.getItem('ktwo_recently_viewed') || '[]'); } catch(e) {} if (list.length < 1) return; var anchor = document.querySelector('.ktwo-mondial-banner') || document.querySelector('.ktwo-usp-banner'); if (!anchor) return; var section = document.createElement('section'); section.className = 'ktwo-recently-viewed'; var cardsHtml = ''; list.forEach(function(p){ var img = p.image ? '' : '

📦
'; cardsHtml += '' + '
' + img + '
' + '
' + p.name + '
' + '
' + p.price + '
' + '
'; }); section.innerHTML = '
' + '
' + '

המוצרים האחרונים שעניינו אותך

' + '' + '
' + '
' + cardsHtml + '
' + '
'; anchor.parentNode.insertBefore(section, anchor.nextSibling); var clearBtn = section.querySelector('.ktwo-rv-clear'); if (clearBtn) clearBtn.addEventListener('click', function(){ try { localStorage.removeItem('ktwo_recently_viewed'); } catch(e) {} section.remove(); }); } function ensureMondialImageStyles() { if (document.getElementById("ktwo-mondial-img-styles")) return; var s = document.createElement("style"); s.id = "ktwo-mondial-img-styles"; var css = ""; css += ".ktwo-mondial-banner{background:url(https://www.ktwo.co.il/wp-content/uploads/2026/05/MONDIAL2026.png) center/cover no-repeat #0a2e1a !important;padding:0 !important;border-radius:0 0 14px 14px !important;max-width:1240px !important;border:none !important;margin:0 auto 0 !important;aspect-ratio:1830/700 !important;overflow:hidden !important;cursor:pointer !important;display:block !important;width:calc(100% - 32px) !important;box-shadow:0 6px 20px rgba(0,0,0,.12)}"; css += ".ktwo-mondial-banner > *{display:none !important}"; css += ".ktwo-mondial-banner.ktwo-mondial-clickable:hover{transform:translateY(-2px);box-shadow:0 12px 32px rgba(0,0,0,.25)}"; css += "@media (max-width:768px){.ktwo-mondial-banner{width:calc(100% - 16px) !important;margin:10px auto 0 !important;border-radius:10px !important}}"; s.textContent = css; document.head.appendChild(s); } function restructureHeader() { var topRightCol = document.querySelector(".elementor-element-1574ee38"); var searchWidget = document.querySelector(".elementor-element-a3e08e1"); var midSection = document.querySelector(".elementor-element-1009261f"); if (!topRightCol || !searchWidget) return; if (topRightCol.dataset.ktwoSearchMoved === "1") return; // Wrap top section as flex if not already topRightCol.appendChild(searchWidget); topRightCol.dataset.ktwoSearchMoved = "1"; // Inject layout CSS if (!document.getElementById("ktwo-header-restructure-styles")) { var s = document.createElement("style"); s.id = "ktwo-header-restructure-styles"; var css = ""; css += ".elementor-element-7f8a14d3 > .elementor-container{display:grid !important;grid-template-columns:150px 1fr 150px !important;align-items:center !important;gap:0 !important;direction:rtl}";css += ".elementor-element-7f8a14d3 .elementor-widget-theme-site-logo img,.elementor-element-7f8a14d3 .elementor-widget-image img,.elementor-element-7f8a14d3 [class*=site-logo] img{max-width:130px !important;height:auto !important;width:130px !important}";css += ".elementor-element-7f8a14d3 .elementor-widget-theme-site-logo img,.elementor-element-7f8a14d3 [class*=site-logo] img{height:36px !important;width:auto !important;max-width:130px !important;object-fit:contain !important}"; css += ".elementor-element-1574ee38{display:flex !important;align-items:center !important;justify-content:center !important;grid-column:2}"; css += ".elementor-element-1574ee38 .elementor-element-a3e08e1{width:100% !important;max-width:820px}"; css += ".elementor-element-1009261f{padding-top:0 !important;padding-bottom:0 !important;min-height:42px !important}";css += ".elementor-element-1009261f .elementor-container{min-height:auto !important;padding-top:4px !important;padding-bottom:4px !important}";css += ".elementor-element-7f8a14d3 > .elementor-container > .elementor-element-51be236{flex:0 0 150px !important;max-width:150px !important;width:150px !important;grid-column:1;justify-content:flex-start}";css += ".elementor-element-1009261f .elementor-container,.elementor-element-1009261f .elementor-column,.elementor-element-1009261f .elementor-widget-wrap.elementor-element-populated{padding:0 !important;min-height:auto !important}";css += ".elementor-element-ac1f105 > .elementor-widget-wrap{display:flex !important;flex-direction:row-reverse !important;align-items:center !important;justify-content:space-between !important;gap:24px !important;flex-wrap:nowrap !important}";css += ".elementor-element-ac1f105 > .elementor-widget-wrap > .elementor-element-4e4d44ce{flex:0 0 auto !important;width:auto !important;max-width:none !important}";css += ".elementor-element-ac1f105 > .elementor-widget-wrap > .elementor-element-a6fd062{flex:1 1 auto !important;width:auto !important;max-width:none !important}";css += ".elementor-element-a6fd062 .elementor-nav-menu{justify-content:flex-start !important}"; css += ".elementor-element-1009261f .elementor-element-a3e08e1{display:none !important}"; css += ".elementor-element-7f8a14d3{padding-top:4px !important;padding-bottom:4px !important;min-height:48px !important}"; css += "header.elementor-location-header{margin-bottom:0 !important}"; css += ".ktwo-mondial-banner{margin-top:0 !important;border-top-left-radius:0 !important;border-top-right-radius:0 !important;width:100% !important;max-width:none !important;border-radius:0 !important}"; css += "@media (max-width:768px){.elementor-element-7f8a14d3 > .elementor-container{flex-wrap:wrap}.elementor-element-1574ee38 .elementor-element-a3e08e1{max-width:100%}}"; s.textContent = css; document.head.appendChild(s); } } function makeMondialClickable() { ensureMondialImageStyles(); var banner = document.querySelector('.ktwo-mondial-banner'); if (!banner) return; if (banner.classList.contains('ktwo-mondial-clickable')) return; banner.classList.add('ktwo-mondial-clickable'); banner.addEventListener('click', function(e){ if (e.target.tagName === 'A') return; window.location.href = '/tag/mondial-2026/'; }); } function ensureMosaicStyles() { if (document.getElementById('ktwo-mosaic-styles')) return; var s = document.createElement('style'); s.id = 'ktwo-mosaic-styles'; s.textContent = '.ktwo-mondial-banner.ktwo-mondial-clickable{cursor:pointer;transition:transform .2s,box-shadow .3s}' + '.ktwo-mondial-banner.ktwo-mondial-clickable:hover{transform:translateY(-3px);box-shadow:0 12px 32px rgba(0,0,0,.2)}' + '.ktwo-mondial-banner .ktwo-mondial-cta{display:none !important}' + '.ktwo-home-mosaic{max-width:1200px;margin:-110px auto 24px;padding:0 16px;direction:rtl;position:relative;z-index:5}' + '.ktwo-mosaic-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}' + '.ktwo-mosaic-card{background:#fff;border:1px solid #e5e7eb;border-radius:10px;padding:14px;display:flex;flex-direction:column;box-shadow:0 1px 3px rgba(0,0,0,.04);min-height:280px}' + '.ktwo-mosaic-title{font-size:15px !important;font-weight:700 !important;margin:0 0 10px !important;color:#0f1111 !important;line-height:1.2}' + '.ktwo-mosaic-imgs{display:grid;grid-template-columns:repeat(2,1fr);gap:6px;margin-bottom:8px;flex-grow:1}' + '.ktwo-mosaic-img{display:block;text-decoration:none !important;color:#0f1111 !important}' + '.ktwo-mosaic-img img{width:100%;aspect-ratio:1;object-fit:contain;background:#fafafa;border-radius:6px;border:1px solid #f3f4f6;display:block}' + '.ktwo-mosaic-noimg{width:100%;aspect-ratio:1;display:flex;align-items:center;justify-content:center;background:#fafafa;border-radius:6px;font-size:24px;opacity:.4}' + '.ktwo-mosaic-link{font-size:12px;color:#007185 !important;text-decoration:none !important;margin-top:8px;font-weight:500}' + '.ktwo-mosaic-link:hover{text-decoration:underline !important;color:#c45500 !important}' + '.ktwo-mosaic-deal{background:linear-gradient(135deg,#fff5ea 0%,#fffaf0 100%);border-color:#fbbf24}' + '.ktwo-mosaic-deal-link{display:flex;flex-direction:column;text-decoration:none !important;color:#0f1111 !important;height:100%;flex-grow:1}' + '.ktwo-mosaic-deal-img{width:100%;aspect-ratio:1;object-fit:contain;background:#fff;border-radius:8px;margin-bottom:8px;padding:6px;border:1px solid #fef3c7;max-height:140px}' + '.ktwo-mosaic-deal-name{font-size:12px;font-weight:600;line-height:1.3;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;min-height:30px}' + '.ktwo-mosaic-deal-price{font-size:18px;font-weight:800;color:#b12704;margin:6px 0 4px}' + '.ktwo-mosaic-deal-cta{color:#007185 !important;font-size:12px;font-weight:600;margin-top:auto;padding-top:6px}' + '.ktwo-recently-viewed{display:none !important}' + '@media (max-width:1024px){.ktwo-mosaic-grid{grid-template-columns:repeat(2,1fr)}.ktwo-home-mosaic{margin-top:-20px !important}}' + '@media (max-width:568px){.ktwo-mosaic-grid{grid-template-columns:1fr}.ktwo-mosaic-card{min-height:220px}.ktwo-home-mosaic{margin-top:-10px !important}}'; document.head.appendChild(s); } function injectHomeMosaic() { if (!document.body.classList.contains('home')) return; if (document.querySelector('.ktwo-home-mosaic')) return; ensureMosaicStyles(); var anchor = document.querySelector('.ktwo-mondial-banner'); if (!anchor) anchor = document.querySelector('.ktwo-usp-banner'); if (!anchor) return; var section = document.createElement('section'); section.className = 'ktwo-home-mosaic'; section.innerHTML = '
' + '
' + '

צפית לאחרונה

' + '
' + 'המשך לקנות ←' + '
' + '
' + '

הכי פופולריים באתר

' + '
' + 'לכל הפופולריים ←' + '
' + '
' + '

המבצעים החמים שלנו

' + '
' + 'לכל המבצעים ←' + '
' + '
' + '

מוצר היום במבצע 🔥

' + '
' + '
' + '
'; anchor.parentNode.insertBefore(section, anchor.nextSibling); populateMosaicRecent(section); populateMosaicPopular(section); populateMosaicDeals(section); populateMosaicDailyDeal(section); } function populateMosaicRecent(section) { var card = section.querySelector('[data-mosaic="recent"]'); var imgs = card.querySelector('.ktwo-mosaic-imgs'); var list = []; try { list = JSON.parse(localStorage.getItem('ktwo_recently_viewed') || '[]'); } catch(e) {} if (!list.length) { // Replace with "new arrivals" if no recent card.querySelector('.ktwo-mosaic-title').textContent = 'החדשים באתר'; card.querySelector('.ktwo-mosaic-link').textContent = 'לכל המוצרים החדשים ←'; card.querySelector('.ktwo-mosaic-link').href = '/shop/?orderby=date'; fetch('/wp-json/wc/store/v1/products?orderby=date&per_page=4').then(function(r){return r.json()}).then(function(d){ renderMosaicThumbs(imgs, d); }); return; } var html = ''; list.slice(0, 4).forEach(function(p){ var imgHtml = p.image ? '' : '
📦
'; html += '' + imgHtml + ''; }); imgs.innerHTML = html; } function renderMosaicThumbs(container, products) { if (!products || !products.length) { container.closest('.ktwo-mosaic-card').style.display = 'none'; return; } var html = ''; products.slice(0,4).forEach(function(p){ var img = p.images && p.images[0] ? p.images[0].thumbnail || p.images[0].src : null; var url = p.permalink ? p.permalink.replace(window.location.origin, '') : '#'; var imgHtml = img ? '' : '
📦
'; html += '' + imgHtml + ''; }); container.innerHTML = html; } function populateMosaicPopular(section) { var card = section.querySelector('[data-mosaic="popular"]'); fetch('/wp-json/wc/store/v1/products?orderby=popularity&per_page=4').then(function(r){return r.json()}).then(function(d){ renderMosaicThumbs(card.querySelector('.ktwo-mosaic-imgs'), d); }).catch(function(){ card.style.display='none'; }); } function populateMosaicDeals(section) { var card = section.querySelector('[data-mosaic="deals"]'); fetch('/wp-json/wc/store/v1/products?on_sale=true&per_page=4').then(function(r){return r.json()}).then(function(d){ renderMosaicThumbs(card.querySelector('.ktwo-mosaic-imgs'), d); }).catch(function(){ card.style.display='none'; }); } function populateMosaicDailyDeal(section) { var card = section.querySelector('[data-mosaic="dailydeal"]'); var content = card.querySelector('.ktwo-mosaic-deal-content'); fetch('/wp-json/wc/store/v1/products?on_sale=true&orderby=popularity&per_page=1').then(function(r){return r.json()}).then(function(d){ if (!d || !d.length) { card.style.display='none'; return; } var p = d[0]; var img = p.images && p.images[0] ? p.images[0].src : null; var url = p.permalink ? p.permalink.replace(window.location.origin, '') : '#'; var priceFormatted = ''; if (p.prices && p.prices.price) { var raw = p.prices.price; var num = parseInt(raw, 10); if (raw.length > 4) num = Math.round(num / 100); priceFormatted = '₪' + num.toLocaleString('he-IL'); } content.innerHTML = '' + (img ? '' : '') + '
' + p.name + '
' + (priceFormatted ? '
' + priceFormatted + '
' : '') + '
לרכישה ולפרטים נוספים ←
' + '
'; }).catch(function(){ card.style.display='none'; }); } function injectMondialBanner() { if (!document.body.classList.contains('home')) return; if (document.querySelector('.ktwo-mondial-banner')) return; const usp = document.querySelector('.ktwo-usp-banner'); if (!usp) return; const banner = document.createElement('section'); banner.className = 'ktwo-mondial-banner'; banner.innerHTML = '
' + '
' + '⚽ מבצע מונדיאל 2026 🏆' + '

חוו את המונדיאל כמו במגרש!

' + '

מקרנים ענקיים ומערכות סאונד מקצועיות - הכי קרוב למשחק

' + '
' + '🍕' + 'מתנה: מגש פיצה XL מפיצה האט לכל קונה במבצע!' + '
' + '
' + '📺 מסך ענק עד 300"' + '🔊 סאונד היקפי' + '🚚 משלוח חינם' + '🛡 אחריות מלאה' + '
' + '
' + 'לקטלוג המבצעים ←' + '
'; usp.parentNode.insertBefore(banner, usp); } // === Init === function init() { applyToCards(); updateShippingTimes(); fixK2gBlock(); enhanceSingleProduct(); injectUSPBanner(); restructureHeader(); ensurePhoneFixStyles(); ensureUnifiedPaletteStyles(); ensureAstraCardFixStyles(); removeAstraDuplicateButtons(); setTimeout(removeAstraDuplicateButtons, 500); setTimeout(removeAstraDuplicateButtons, 1500); injectMondialBanner(); makeMondialClickable(); trackRecentlyViewed(); injectHomeMosaic(); moveAudiencesSection(); injectCategoriesGrid(); injectAudienceSection(); injectComparison(); injectDailyDeal(); injectWhatsApp(); } if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', init); } else { init(); } setTimeout(init, 800); setTimeout(init, 1500); })(); function ensurePhoneFixStyles() { if (document.getElementById("ktwo-phone-fix-styles")) return; var s = document.createElement("style"); s.id = "ktwo-phone-fix-styles"; var css = ""; css += ".elementor-element-a3fd494,.elementor-element-40e2614{white-space:nowrap !important;flex-shrink:0 !important;width:auto !important;max-width:none !important;min-width:170px !important}"; css += ".elementor-element-a3fd494 .elementor-icon-box-wrapper,.elementor-element-a3fd494 .elementor-icon-box-content,.elementor-element-a3fd494 .elementor-icon-box-title,.elementor-element-a3fd494 .elementor-icon-box-title a{white-space:nowrap !important}"; css += ".elementor-element-4e4d44ce{flex:0 0 auto !important;min-width:auto !important;width:auto !important}"; css += ".elementor-element-4e4d44ce > .elementor-container{flex-wrap:nowrap !important;align-items:center !important;gap:16px !important;justify-content:flex-end !important;padding:0 !important}"; css += ".elementor-element-4e4d44ce .elementor-column{width:auto !important;flex:0 0 auto !important;min-height:auto !important}"; css += ".elementor-element-4e4d44ce .elementor-widget-wrap{padding:0 !important;min-height:auto !important;display:flex !important;align-items:center !important}"; s.textContent = css; document.head.appendChild(s); } function ensureUnifiedPaletteStyles() { if (document.getElementById("ktwo-unified-palette")) return; var s = document.createElement("style"); s.id = "ktwo-unified-palette"; var rules = []; rules.push(".woocommerce button.button.alt,.woocommerce a.button.alt,.single_add_to_cart_button,button.ajax_add_to_cart,.add_to_cart_button{background:#ffd814 !important;color:#0f1111 !important;border:1px solid #fcd200 !important;font-weight:700 !important}"); rules.push(".woocommerce button.button.alt:hover,.single_add_to_cart_button:hover,.add_to_cart_button:hover{background:#f7ca00 !important}"); rules.push(".elementor-search-form__submit,.elementor-search-form button[type=submit]{background:#ffd814 !important;color:#0f1111 !important}"); rules.push("ins .amount,ins bdi{color:#b12704 !important;font-weight:700 !important;text-decoration:none !important}"); rules.push("del .amount,del bdi{color:#565959 !important;text-decoration:line-through !important}"); rules.push(".onsale,.product .onsale{background:#cc0c39 !important;color:#fff !important;border-radius:4px !important}"); rules.push(".ktwo-mosaic-deal{background:linear-gradient(135deg,#fffaf0 0%,#fff5e6 100%) !important;border:1px solid #fbbf24 !important}"); rules.push(".ktwo-mosaic-link{color:#007185 !important}"); rules.push("header.elementor-location-header > section{max-width:1248px !important;margin:0 auto !important}"); s.textContent = rules.join("\n"); document.head.appendChild(s); } function moveAudiencesSection() { if (!document.body.classList.contains("home")) return; var attempts = 0; function tryMove() { attempts++; var audSec = document.querySelector(".ktwo-audiences-section"); var catSec = document.querySelector(".ktwo-categories-section"); if (!audSec || !catSec) { if (attempts < 10) setTimeout(tryMove, 400); return; } if (audSec.dataset.ktwoMovedBeforeCat === "1") return; catSec.parentNode.insertBefore(audSec, catSec); audSec.dataset.ktwoMovedBeforeCat = "1"; } tryMove(); setTimeout(tryMove, 1000); setTimeout(tryMove, 2500); } function ensureAstraCardFixStyles() { if (document.getElementById("ktwo-astra-card-fix")) return; var s = document.createElement("style"); s.id = "ktwo-astra-card-fix"; var rules = []; rules.push("html body .ast-on-card-button.add_to_cart_button,html body .ast-on-card-button.ast-select-options-trigger,html body a.ast-on-card-button:not(.ast-onsale-card),html body .astra-shop-summary-wrap .ast-on-card-button,html body .astra-shop-thumbnail-wrap .ast-on-card-button:not(.ast-onsale-card){display:none !important;visibility:hidden !important;opacity:0 !important;pointer-events:none !important}"); rules.push("html body .ast-on-card-button.ast-onsale-card,html body span.ast-onsale-card{position:absolute !important;top:8px !important;right:8px !important;left:auto !important;background:#cc0c39 !important;color:#fff !important;padding:3px 8px !important;border-radius:4px !important;font-size:11px !important;font-weight:700 !important;font-family:Arial,sans-serif !important;width:auto !important;height:auto !important;line-height:1.3 !important;min-height:0 !important;max-width:60px !important;display:inline-block !important;border:none !important;box-shadow:none !important;z-index:5;text-decoration:none !important}"); s.textContent = rules.join("\n"); document.head.appendChild(s); } function removeAstraDuplicateButtons() { document.querySelectorAll(".ast-on-card-button.ast-onsale-card").forEach(function(el){el.remove();}); var btns = document.querySelectorAll(".ast-on-card-button.add_to_cart_button, .ast-on-card-button.ast-select-options-trigger"); btns.forEach(function(el){ if (!el.classList.contains("ast-onsale-card")) el.remove(); }); document.querySelectorAll(".ast-on-card-button.ast-onsale-card").forEach(function(el){ el.style.cssText = "position:absolute;top:8px;right:8px;left:auto;background:#cc0c39;color:#fff;padding:3px 8px;border-radius:4px;font-size:11px;font-weight:700;font-family:Arial,sans-serif;width:auto;height:auto;line-height:1.3;min-height:0;max-width:60px;display:inline-block;border:none;box-shadow:none;z-index:5"; }); document.querySelectorAll(".ktwo-card-attr-value, [data-attribute_value]").forEach(function(el){ var v = (el.textContent || "").trim(); if (v === "00\"" || v === "00" || v === "\"" || v === "--") { var card = el.closest(".ktwo-card-attr, [data-attribute]"); if (card) card.style.display="none"; else el.parentElement && (el.parentElement.style.display="none"); } }); }

Epson SureLab SL-D500 | מדפסת פוטו מקצועית | Bundle מלא | 2000 ניירות

Epson SureLab SL-D500 | מדפסת פוטו מקצועית | Bundle מלא | 2000 ניירות

4,290

משלוח חינם!

מדפסת פוטו מקצועית Epson SureLab SL-D500 — פתרון הדפסה שלם לסטודיו צילום, מעבדת פוטו ואירועים, עם כל מה שצריך לעבודה מיידית.

  • 🎨 6 צבעי דיו UltraChrome D6 — איכות פוטו מקצועית מרהיבה
  • עד 250 הדפסות בשעה — מהירות ייצור גבוהה ל-10×15 ס"מ
  • 📦 Bundle מלא: מדפסת + 6 בקבוקי דיו + 2,000 ניירות פוטו
  • 🛡️ חדש | אחריות יצרן Epson | משלוח חינם

✅ זמין במלאי — משלוח תוך 72 שעות

על המוצר

ה-Epson SureLab SL-D500 היא מדפסת פוטו מקצועית קומפקטית, המיועדת לסטודיואים, מעבדות צילום, צלמי חתונות ואולמות אירועים שזקוקים לפתרון הדפסה מהיר, איכותי וכלכלי. חבילה זו כוללת הכל לעבודה מיידית: מדפסת, 6 בקבוקי דיו UltraChrome D6 מקוריים ו-2,000 ניירות פוטו 10×15 ס"מ.

מפרט טכני

דגם Epson SureLab SL-D500
קוד פריט C11CK56301BX-BDL
טכנולוגיית דיו UltraChrome D6 — 6 צבעים (C, M, Y, K, LC, LM)
מהירות הדפסה עד 250 הדפסות בשעה (10×15 ס"מ)
גודל הדפסה 10×15 ס"מ — גלוסי, סאטן, לוסטר — חד וגם דו צדדי
חיבורים USB, LAN (Ethernet), Wi-Fi
קיבולת מגש 100 גיליונות
מצב המוצר חדש | אחריות יצרן Epson
תכולת האריזה מדפסת + 6 בקבוקי דיו (70ml) + 2,000 ניירות 10×15 ס"מ

מה כלול בחבילה?

  • ✅ מדפסת Epson SureLab SL-D500 (חדשה)
  • ✅ 6 בקבוקי דיו UltraChrome D6 מקוריים (70ml כל אחד)
  • ✅ 2,000 ניירות פוטו 10×15 ס"מ — מוכן לעבודה מיידית
  • ✅ תעודת אחריות יצרן Epson

למי מתאים?

  • 📸 סטודיואי צילום מקצועיים — הדפסת תמונות במקום ועמדות פוטו
  • 💒 צלמי חתונות ואירועים — מסירת תמונות ביום האירוע
  • 🖼️ מעבדות פיתוח ובתי דפוס — ייצור מהיר בנפח גבוה
  • 🎁 עמדות פוטו ומתנות מותאמות אישית

למה לקנות מ-KTWO?

  • ✅ מוצר מקורי חדש עם אחריות יצרן Epson מלאה
  • ✅ Bundle מוכן לעבודה — אין צורך לרכוש תוספות
  • ✅ משלוח מהיר עד 72 שעות | משלוח חינם
  • ✅ תמיכה טכנית בעברית — זמינים בטלפון ו-WhatsApp
  • ✅ ניסיון 10+ שנים בציוד IT ומדפסות מקצועיות לעסקים בישראל

שאלות נפוצות

האם הדיו מספיק ל-2,000 ניירות?
כן — 6 בקבוקי דיו של 70ml מספיקים בדרך כלל ל-2,000 הדפסות סטנדרטיות בגודל 10×15.

האם ניתן לחבר לרשת?
כן — SL-D500 תומכת ב-LAN ו-Wi-Fi לניהול תור הדפסה.

האם ניתן לקבל חשבונית?
כן, כל קנייה מגיעה עם חשבונית מס מלאה.

Brand

EPSON

מצב

זמן משלוח

סוג

מדפסת פוטו

עגלת קניות
✅ המוצר נוסף לסל!
Scroll to Top

Epson SureLab SL-D500 | מדפסת פוטו מקצועית | Bundle מלא | 2000 ניירות

4,290