(function () {
try {
// AQ-r2 (2026-06-09): respect the explicit-denial sentinel
// written by cookie-consent-harden.js writeATR() on any
// marketing-axis denial (payload.marketing === false; cycle-3 F1).
// Without this gate, the next page navigation re-creates
// gmx_first_touch from the current URL+referrer+utm_*+click_ids,
// silently undoing the reject-all deletion (sweep finding #1).
// The sentinel is cleared the moment the visitor grants
// marketing in the banner (analytics-only grant does NOT
// clear), restoring the writer path on the very next
// page load. Page-cache-safe: the sentinel is a
// browser-resident cookie checked in the inline script, so
// varnish/breeze-served HTML still hits this gate.
if (/(?:^|;\s*)gmx_consent_denied=1(?:;|$)/.test(document.cookie || '')) return;
var CLICK_IDS = ['gclid','fbclid','msclkid','ttclid','wbraid','gbraid','li_fat_id'];
var qs = new URLSearchParams(window.location.search);
var urlClickIdKey = null;
for (var i = 0; i < CLICK_IDS.length; i++) {
if (qs.get(CLICK_IDS[i])) { urlClickIdKey = CLICK_IDS[i]; break; }
}// Parse existing cookie.
var existing = null;
var match = document.cookie.match(/(?:^|;\s*)gmx_first_touch=([^;]+)/);
if (match) {
try { existing = JSON.parse(decodeURIComponent(match[1])); } catch (e) { existing = null; }
}// GWP-273 — referrer-enrichment branch.
// Keep existing unless either (a) URL carries a new click id
// the stored payload lacks (paid click is a higher-value
// signal and upgrades direct/organic), OR (b) the stored
// payload has empty referrer AND the current document.referrer
// is non-empty + external (Safari/ITP/policy-quirk catch:
// first-hit may have missed the referrer; later same-session
// page-loads can recover it).
var existingHasRef = !!(existing && existing.referrer && existing.referrer !== '');
var docRef = document.referrer || '';
var refHost = '';
if (docRef) {
try {
refHost = new URL(docRef).hostname.replace(/^www\./, '').toLowerCase();
} catch (e) { refHost = ''; }
}
var ownHost = (location.host || '').replace(/^www\./, '').toLowerCase();
var currentExternalRef = !!(refHost && refHost !== ownHost);
var canEnrichRef = !!existing && !existingHasRef && currentExternalRef;if (existing) {
if (!urlClickIdKey && !canEnrichRef) return;
if (urlClickIdKey && existing[urlClickIdKey] && !canEnrichRef) return;
}var utm_keys = [
'utm_source','utm_medium','utm_campaign','utm_content','utm_term',
'utm_adgroup','utm_matchtype','utm_network','utm_device','utm_placement'
];
// GWP-273 — merge-preserving base. When enriching an existing
// payload, retain its landing_url + ts + prior click ids /
// utms; only overlay referrer (and any click id appended below
// via the forEach). Branches with/without urlClickIdKey were
// collapsed — both produced the identical Object.assign — the
// click id is added uniformly later.
//
// GWP-273 design choice: "latest external referrer wins" —
// accepted edge case where a user opens a new external tab
// post-empty-first-touch and returns; low-volume, simple, no
// sentinel flag needed.
var data;
if (existing && canEnrichRef) {
data = Object.assign({}, existing, { referrer: docRef });
} else {
data = { landing_url: window.location.href, referrer: docRef, ts: Date.now() };
}
utm_keys.concat(CLICK_IDS).forEach(function (k) {
var v = qs.get(k);
if (v) data[k] = v;
});
// GWP-208 — carry Meta's first-party click-linker cookies (_fbc
// = fb.1.<ts>.<fbclid>, _fbp) into the captured payload so they
// ride the persistent gmx_first_touch cookie cross-page (LP X →
// LP Y) the same way the URL click-ids do. The CF7 hidden-field
// populator copies the whole payload verbatim, so fbc/fbp reach
// the lead even when the form lives on a page without ?fbclid.
var fbcMatch = document.cookie.match(/(?:^|;\s*)_fbc=([^;]+)/);
if (fbcMatch && fbcMatch[1]) data.fbc = decodeURIComponent(fbcMatch[1]);
var fbpMatch = document.cookie.match(/(?:^|;\s*)_fbp=([^;]+)/);
if (fbpMatch && fbpMatch[1]) data.fbp = decodeURIComponent(fbpMatch[1]);
var encoded = encodeURIComponent(JSON.stringify(data));
if (encoded.length > 3800) return;
var expires = new Date(Date.now() + 90 * 864e5).toUTCString(); // GWP-143 C1: match Google Ads 90-day attribution window
var secure = window.location.protocol === 'https:' ? '; Secure' : '';
document.cookie = 'gmx_first_touch=' + encoded + '; Path=/; Expires=' + expires + '; SameSite=Lax' + secure;
} catch (e) {}
})();
/* Meta Pixel base — inline in wp_head so Breeze Delay-All-JS does not defer it; fbevents.js is async-injected (optimizer-invisible). */
!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;
n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,document,'script',
'https://connect.facebook.net/en_US/fbevents.js');/* Symmetric with server GMX_Consent: revoke BEFORE init; cookies/sends held until grant. */
fbq('consent', 'revoke');
fbq('init', '1857131551802431');
fbq('track', 'PageView'); /* queued; flushed to Meta only after consent grant *//* Grant bridge — reads the SAME ATR marketing signal as GMX_Consent.applyConsent(). */
(function () {
function read(name){var m=document.cookie.match('(?:^|; )'+name.replace(/([.*+?^${}()|[\]\\])/g,'\\$1')+'=([^;]*)');return m?decodeURIComponent(m[1]):'';}
function marketingGranted(){
try {
var given = read('atr_cookie_notice_consent_given');
if (!given) return false; // undecided -> stay revoked
var c = JSON.parse(read('atr_cookie_notice_consent') || '{}');
return !!(c.marketing || c.ad_storage === 'granted');
} catch (e) { return false; } // NO-SILENT-OK: parse/read failure degrades gracefully to revoked (consent stays held; no marketing send) — not an error to report.
}
function apply(){ if (marketingGranted()) fbq('consent', 'grant'); }
apply();
document.addEventListener('click', function(ev){
if (ev.target && ev.target.closest && ev.target.closest('[class*="atr-cookie"], #atr-cookie-notice')) setTimeout(apply, 50);
}, true);
window.addEventListener('storage', apply);
})();
var breeze_prefetch = {"local_url":"https://gomixapp.com","ignore_remote_prefetch":"1","ignore_list":["/cart/","/checkout/","/my-account/","https://gomixapp.co.il/(.)/u05d4u05d8u05d5u05e4u05e1-u05e0u05e9u05dcu05d7-u05d1u05d4u05e6u05dcu05d7u05d4/","wp-admin","wp-login.php"]};
//# sourceURL=breeze-prefetch-js-extra
Digital signage for clinics and medical practices is the solution that upgrades the patient experience from the moment they walk in until they leave. The GoMixApp system combines interactive LED digital screens, a digital bulletin board, smart wayfinding signage and a queue management system – all managed in the cloud, in English, in real time. The solution is personalized for every clinic, HMO branch or private practice, raising the level of professionalism without complications.
Need a digital signage system? Leave your details and a representative will get back to you
Error: Contact form not found.
Outdoor digital advertising signage for clinics
Outdoor digital signage for clinics is a powerful marketing tool that highlights your practice over competitors and attracts new patients. The screen displays medical services, physician names and opening hours in an eye-catching, rotating format, with remote real-time message updates – so the message is always current and accurate. More than 300 clinics and businesses in Israel already run our solution. Join them too.
Digital bulletin board for the waiting room
A digital bulletin board in the waiting room creates a pleasant, informative wait experience and replaces static paper notices with rotating electronic screens. The screen shows medical information, important updates, health videos and upcoming appointments – making waiting time productive for messaging, strengthening the patient relationship and reducing the sense of overcrowding. Content is managed through a digital content management system, remotely and from any device, ensuring a unified and up-to-date message. Want to see it in action? Contact us.
Smart signage for clinic rooms with continuous room-availability updates
Smart room signage lets patients and staff orient themselves in the building within seconds. Every room is equipped with a screen that shows in real time the physician’s name, specialty and room availability – free, occupied or offline. These digital screens for clinics update automatically by schedule and allow full remote control. The result: less confusion, less load on staff, and a professional, trustworthy visit experience.
Queue management and real-time information display
A digital messaging system for the clinic displays room status and physician availability clearly and instantly through digital screens for clinics that update in real time. Digital queue management streamlines navigation around the facility, reduces questions and improves workflow throughout the day. Content management is easy from any device, with full remote control. The system integrates with existing clinic management software, saves staff time and reduces errors – making the entire process quiet, efficient and continuous.
Automated medical content management, wait-time updates and patient information in every treatment room.
MyClinic: information screen in the waiting room
Digital queue system, service promotions and ongoing medical information in the clinic lobby.
Digital signage in a veterinary clinic
Pet care tips, service promotions and brand messaging in the waiting room.
Advantages
Compatibility with all screen types
Our player supports all operating systems and devices, including a wide range of screen resolutions. The platform ensures full compatibility and flexibility for displaying content on every type of screen.
Smart screens with data security
We use advanced encryption for data transfer and provide real-time monitoring and alert capabilities. All of this ensures that your information is protected from unauthorized access and enables safe management and peace of mind.
Digital signage with stunning design
A variety of design templates and full personalization of design and content via an advanced content editor that lets you easily create professional, impressive digital signage.
Remote screen control with a content editor
Our content editor offers a variety of built-in modules such as weather, news, date and time, images, videos and messages, enabling you to create diverse content and manage it easily for a professional user experience.
Digital signage with the ISO 27001 information-security standard
Our platform meets the ISO standard, ensuring information management to the highest standards. The standard includes strict security procedures for information handling, access control and protection against potential threats, ensuring that your data is optimally protected.
Receive alerts for the smart screens
Alerts about screen disconnections are sent directly to your email, allowing fast response and immediate fixes, improving signage uptime and reducing downtime.
Already Collaborating With Us
Customer testimonials
Pinchas
Homeowners association, Ramla
Service:
★★★★★
Product:
★★★★★
Recommendation:
★★★★★
“With the holiday videos, you absolutely nailed it – the residents were thrilled!”
Mor
Academic institution
Service:
★★★★★
Product:
★★★★★
Recommendation:
★★★★★
“The digital bulletin board looks amazing, and everything works smoothly!”
Inbar Shmueli
Business owner
Service:
★★★★★
Product:
★★★★★
Recommendation:
★★★★★
“Personal, professional service, fast response, excellent product – very satisfied”
Patient interacting with a digital signage screen in a clinic – GoMixApp.
Digital screens for clinics – the key benefits for staff and patients
Digital screens for medical practices and private clinics deliver immediate added value to both sides: medical staff benefit from automated queue management and appointment scheduling, and the patient receives clear, legible information at every stage of the visit. As of 2026, dental clinics, blood-test centers and private treatment centers are adopting the technology at a higher pace than ever, according to data from the Digital Signage Federation.
Real-time message updates – no printing, no delays
Integration with existing clinic management systems without new infrastructure
Clear display and easy readability for patients of every age
Easy to install with no need for complex maintenance
Electronic signage for waiting rooms that reduces waiting anxiety by 40%
Interactive room screens that enable targeted content management for every department
Electronic signage for clinics – how does it work in practice?
GoMixApp’s electronic signage for clinics is based on a cloud-based digital content management system that lets any clinic manager update content, hours and messages within minutes from any computer or phone. An electronic notice board placed at the entrance or in waiting rooms displays personalized information that’s synchronized with the queue management system, so every schedule change is automatically updated on the screens.
Choose the right screen type: a digital bulletin board for the waiting room, a wayfinding screen at the entrance, or digital floor and wayfinding signage for a multi-floor building.
Connect the screen to the GoMixApp cloud system – installation takes under an hour and requires no technical knowledge.
Upload content, schedules and physician names through a simple, intuitive management interface.
Update in real time from any device – every change appears on screen within seconds.
Smart information screens in the clinic shorten patients’ perceived waiting time.
Real-time promotional content updates increase sales of treatments and medical services.
Electronic signage in the waiting room reduces repeat questions to clinic staff.
Centralized management of multiple screens saves precious time for administrative staff.
Customized digital displays reinforce the clinic’s branding and uniqueness.
Frequently asked questions
What does digital signage for clinics and medical practices include?
Digital signage for clinics and medical practices includes LED digital screens for waiting rooms, a digital bulletin board, smart room signage, wayfinding screens at the entrance and a digital queue management system – all managed remotely through a cloud interface in English.
How long does it take to install digital screens in a clinic?
Installation usually takes under an hour per screen. The system is easy to install, requires no complex maintenance and demands no special technical knowledge from the staff.
Can the screens be integrated with my existing clinic management software?
Yes. The GoMixApp system is designed to integrate with existing clinic management systems, so schedule and queue updates are automatically synchronized with the screens with no need for duplicate manual entry.
Is electronic signage for waiting rooms also suitable for dental clinics and testing centers?
Absolutely. The solution is adapted to a wide range of medical environments: dental clinics, blood-test centers, HMOs, private treatment centers and hospitals – for each one, the content, design and schedule can be tailored.
What is the difference between a digital bulletin board and a regular paper notice board?
A digital bulletin board updates remotely in real time, displays rotating and varied content including video and animation, and requires no printing. By contrast, a static paper board ages quickly, is expensive to maintain and does not allow immediate updates of critical information.
Comparison of digital signage solutions for clinics
Feature
Advanced digital signage
Traditional static signage
Regular TV screen
Remote content update
✓Instant update from anywhere in real time
✗Requires physical replacement of printed materials
✗No built-in content management system
Compatibility with different screen types
✓Compatible with all screen sizes and resolutions
✗Adapted to a fixed size only
✗Partial display without full adaptation
Data security and ISO 27001 standard
✓Meets a recognized international security standard
✗No digital information to secure
✗No defined data-security standard
Clinic design and branding
✓Design customized to the clinic’s brand
✗Uniform, generic design only
✗Basic interface with no design options
Dynamic, scheduled content
✓Automatic content scheduling by hour and day
✗Fixed content that cannot be changed quickly
✗Manual operation required for every change
Installation and technical support
✓Professional installation with ongoing support
✗Frequent and expensive maintenance
✗Limited support for hardware faults only
Conclusion: the smart-screen solution for every medical practice and clinic
Digital screens for clinics and medical practices are no longer a luxury – they are an essential operational tool that directly affects patient satisfaction, staff efficiency and the clinic’s professional image. A digital messaging system for clinics shortens waiting lines, reduces repeat inquiries at the front desk and improves flow in every medical facility – from a family doctor to a hospital. Electronic signage for waiting rooms, integration with existing clinic management software and real-time content updates – these are the three pillars on which our solution is built, and on which GoMixApp already serves more than 300 clients across Israel. Want to see how the solution would look in your practice? Contact us today and we’ll be happy to give a free demo.
var atrCookieNoticeSettings = {"cookieName":"atr_cookie_notice_consent","decisionCookieName":"atr_cookie_notice_consent_given","expiryDays":"365","autoHideDelay":"0","enableDebug":"","siteName":"GoMixApp","isPrivacyPage":"","privacyPolicyUrl":"https://gomixapp.com/privacy-policy/","privacyNoteText":"\ud83d\udca1 You can read this page while deciding about cookies","mode":"simple"};
//# sourceURL=atr-cookie-notice-simple-js-extra