(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 floor signage is the most advanced solution for smart reception in office and business buildings. Digital LED screens display a list of businesses by floor, an interactive directory map and dynamic real-time content – so every visitor reaches their destination effortlessly. The system fits office buildings, healthcare complexes and public institutions, and allows remote content updates through a simple and convenient Content Management System (CMS).
✓ E2E end-to-end|✓ 300+ customers|★★★★★ Google 5.0
E2E
End-to-end
+500
Screens
+15
Years of experience
+1,000
Projects
10:15
LOGO
5
4
3
2
1
0
24°
10:15
LOGO
4
3
2
1
0
24°
Digital Floor Signage
Digital floor signage provides an advanced navigation solution for business and office buildings: digital screens display an organized list of all tenants by floor and location, so visitors find their destination quickly. The system enables dynamic, flexible content updates at any time through a cloud management interface, projecting innovation and technology that strengthen the building’s image. As of 2026, more than 300 companies have already chosen this solution to upgrade their visitor experience.
Digital wayfinding integrated with a digital bulletin board for employees and visitors
Digital wayfinding combined with a digital building bulletin board offers more than basic navigation – it turns the lobby into a smart information space. Beyond displaying tenant lists by floor, the screens project rotating content: real-time news, weather forecasts, clock and date, updating text messages and promotional videos. The result is an interactive information environment that streamlines orientation and elevates the building’s image – aligned with leading digital signage industry standards worldwide.
Smart wayfinding for clinics, medical centers and offices
Smart wayfinding for clinics and medical centers allows patients and staff to navigate the complex quickly. Each room is equipped with a screen displaying the doctor’s name, specialty and room availability in real time – free, occupied or inactive. The system updates automatically based on the schedule and enables remote content control, projecting professionalism and order. For details on digital signage for clinics and medical centers – visit our full page.
Why choose a digital wayfinding system for your building?
Instead of static, outdated signs, the digital screens display an organized list of businesses by floor or an interactive directory map and guide every visitor to their destination easily and precisely. At the same time they serve as a dynamic, eye-catching bulletin board with real-time news, weather forecasts, date and time, rotating text messages, images and promotional video clips. The result: an impressive visit experience, an innovative image and a smart, flexible information environment – a perfect solution for property management companies, business buildings and office complexes.
How does digital floor signage work? Watch the screen displayed below 👇 for a live example of the interface and features.
So how does it work? Watch the screen below 👇
Digital floor signage and wayfinding template
Customer Cases, Floor Signage and Wayfinding
Examples of Digital Wayfinding Signage
Three examples of wayfinding deployments at MDY Health clinic and Nes Harim Hotel.
Room Signage, MDY Health
Digital room signage at MDY Health clinic — room numbers, doctor name, queue status and patient wayfinding.
Floor Signage, Nes Harim Hotel
Floor signage at Nes Harim Hotel — floor navigation, hotel events and guest service details.
Wayfinding Screen at the Clinic, MDY Health
Wayfinding screen at MDY Health clinic — complementary branch display, queue management and patient information.
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 information security
We use advanced encryption for data transmission and provide real-time monitoring and alerting capabilities. All of this ensures 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 through 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 diverse content creation and easy management for a professional user experience.
Our platform complies with the ISO standard, which guarantees information management at the highest standards. The standard includes strict security procedures for information management, access control and protection from potential threats, ensuring your data is optimally protected.
Receiving updates for smart screens
Alerts about screen disconnections are sent directly to your email, enabling fast response and immediate fixes, improving signage availability and reducing downtime.
Already Collaborating With Us
Key advantages of a digital wayfinding system for office buildings
A digital wayfinding system for office buildings delivers measurable benefits to management companies and tenants alike. It improves visitor experience, reduces reception workload and enables instant content updates without reprinting. Wi-Fi and network connectivity ensures the screens stay updated at all times, even from a remote office.
Digital bulletin board for offices – display internal announcements, events and company updates in real time to all tenants
Digital signage for shared buildings – support for multiple tenants and businesses simultaneously with custom design
Interactive information screens – a friendly touch interface that guides visitors independently and accurately
Building navigation system – dynamic floor maps that update according to tenant changes
Easy to install and maintain – installation within hours and remote technical support throughout the operation period
“With the holiday videos you simply nailed it – the tenants were truly thrilled!”
Mor
Academic institution
Service:
★★★★★
Product:
★★★★★
Recommendation:
★★★★★
“The digital bulletin board looks amazing, and everything runs smoothly!”
Inbar Shmueli
Business owner
Service:
★★★★★
Product:
★★★★★
Recommendation:
★★★★★
“Personal and professional service, quick response, excellent product, very satisfied”
Key Takeaways
Smart display screens at floor entrances cut physical signage turnover by 80%.
Update content in real time through the cloud — no technician, no system downtime.
An interactive touch panel in the lobby boosts tenant satisfaction and saves reception requests.
LED displays with centralized management fit commercial, medical and office buildings alike.
Integrating the wayfinding system with floor boards guarantees accurate navigation for every visitor.
Frequently Asked Questions
What is digital floor signage and how does it work?
Digital floor signage is a system of digital screens that displays tenant and business lists by floor, directory maps and dynamic real-time content. The system is managed through a cloud Content Management System (CMS) and updates remotely at any time.
Which types of buildings is digital wayfinding signage suitable for?
The solution fits office buildings, healthcare complexes and hospitals, shopping malls, public institutions, government offices and hotels. The design and content can be tailored to every type of building and to each client’s specific needs.
How long does installing a digital wayfinding system take?
Installing a digital floor signage system usually takes only a few hours. After installation, all content can be managed and updated remotely through the cloud management interface, with no need for repeat technician visits.
Can a digital bulletin board be combined with wayfinding signage?
Yes – the system combines wayfinding with a digital building bulletin board on a single screen. You can simultaneously display tenant lists, news, weather, internal announcements and promotional videos – all managed from one interface.
Does the system comply with accessibility standards?
Yes – our digital wayfinding system complies with the digital accessibility standards of the Israeli Standards Institution. The interface is designed to be clear, readable and friendly for all users, including people with disabilities.
What is the difference between digital signage for shared buildings and static signs?
Static signs require reprinting every time a tenant or piece of information changes, and they do not allow dynamic content. Digital signage for shared buildings updates instantly through the cloud, saves on printing costs and enables rich, varied content display at any time.
Comparison: Digital wayfinding vs. traditional static signs
Feature
Smart Digital Signage
Traditional Static Signs
Content updates
✓Instant cloud updates from any device, no physical visit needed
✗Requires reprinting and manual replacement for every change
Dynamic content
✓Displays news, weather, clock and videos in real time
✗Displays fixed information only with no quick-change capability
Integrated bulletin board
✓Wayfinding and notices combined on one screen under unified management
✗Separate boards required for each type of information
Ongoing maintenance costs
✓Very low – no recurring printing or materials costs
✗Recurring printing, lamination and installation costs for every change
Accessibility and standards compliance
✓Complies with digital accessibility standards with a clear interface for everyone
✗Often fails to meet modern accessibility requirements
Appearance and visitor experience
✓Impressive LED screens projecting innovation and professionalism
✗An outdated look that harms the building’s image over time
Summary: why digital floor signage is the right investment for your building
In 2026, digital floor signage has shifted from a perk to a standard in leading office and business buildings. The solution improves visitor experience, strengthens the building’s image and streamlines information management – all from a single Content Management System (CMS) that is convenient and accessible from anywhere. A digital building bulletin board enables ongoing communication with tenants and visitors, while digital LED screens and interactive information displays add real marketing and operational value. Last updated: 2026.
Want to upgrade your building’s lobby and offer an impressive entry experience? Contact the GoMixApp team and we’ll be glad to advise and tailor the perfect solution for you.
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