AI update: תיקון פופ-אפ תשלום — איציק בכר אינסטלטור. חפש בכל קבצי העמוד (HTML/JS) כל קוד תשלום קיים: iframe לכתובת SmartPay/pay.sma

This commit is contained in:
2026-08-20 22:17:05 +00:00
parent 86723775ab
commit b38003778d
+17 -4
View File
@@ -595,10 +595,10 @@
ללא אחסון — תעלו בעצמכם ללא אחסון — תעלו בעצמכם
</li> </li>
</ul> </ul>
<a href="https://nwk3ywktc2n8ttnibdhgonlx.sites.clientscenter.co.il/?biz=itzik&plan=code" target="_blank" rel="noopener" class="package-btn package-btn-secondary"> <button type="button" class="package-btn package-btn-secondary" data-plan="code">
המשך לתשלום המשך לתשלום
<svg viewBox="0 0 24 24" aria-hidden="true"><path d="M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z" fill="currentColor"/></svg> <svg viewBox="0 0 24 24" aria-hidden="true"><path d="M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z" fill="currentColor"/></svg>
</a> </button>
</div> </div>
<div class="package-card package-card-featured"> <div class="package-card package-card-featured">
@@ -621,10 +621,10 @@
תיבת מייל עסקית תיבת מייל עסקית
</li> </li>
</ul> </ul>
<a href="https://nwk3ywktc2n8ttnibdhgonlx.sites.clientscenter.co.il/?biz=itzik&plan=full" target="_blank" rel="noopener" class="package-btn package-btn-primary"> <button type="button" class="package-btn package-btn-primary" data-plan="full">
המשך לתשלום המשך לתשלום
<svg viewBox="0 0 24 24" aria-hidden="true"><path d="M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z" fill="currentColor"/></svg> <svg viewBox="0 0 24 24" aria-hidden="true"><path d="M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z" fill="currentColor"/></svg>
</a> </button>
</div> </div>
</div> </div>
</div> </div>
@@ -863,6 +863,8 @@
font-size: 1rem; font-size: 1rem;
font-weight: 500; font-weight: 500;
border-radius: var(--radius-md); border-radius: var(--radius-md);
border: none;
cursor: pointer;
transition: all 0.2s; transition: all 0.2s;
text-align: center; text-align: center;
} }
@@ -945,9 +947,20 @@
closeModal(); closeModal();
} }
}); });
// Handle package button clicks
document.querySelectorAll('.package-btn[data-plan]').forEach(function(btn) {
btn.addEventListener('click', function() {
var plan = this.getAttribute('data-plan');
if (window.SmartPayPopup && typeof window.SmartPayPopup.open === 'function') {
window.SmartPayPopup.open({ plan: plan });
}
});
});
})(); })();
</script> </script>
<script src="script.js"></script> <script src="script.js"></script>
<script src="https://emilio.clientscenter.co.il/pay/popup.js" data-src="cmt03c1jj0021pa017yj9m8qe" data-name="איציק בכר - אינסטלטור" data-origin="https://emilio.clientscenter.co.il"></script>
</body> </body>
</html> </html>