(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 Outdoor Signage: Everything You Need to Know to Reach the Right Audience
The outdoor advertising world is undergoing an impressive digital revolution. Digital outdoor signage has become a central tool for businesses that want to reach broad audiences in a smart, flexible and measurable way. Whether it is a small business seeking local exposure or a retail chain running nationwide campaigns, understanding the world of DOOH is critical to achieving real business results.
Digital outdoor signage consists of large advertising screens placed in public spaces that display dynamic, rotating digital content. Unlike traditional static signage, they allow full flexibility in managing messages and campaigns. These outdoor advertising screens are designed for broad, geographically targeted exposure, and are suitable for businesses seeking high and immediate visibility.
Small and medium businesses benefit from strengthening their local presence through out-of-home advertising. Retail chains use outdoor LED signage to advertise branch- or area-specific promotions. Major brands leverage the platform to expand exposure, branding and nationwide campaigns that generate strong recall.
What Makes Outdoor Signage Different from Indoor Screens
Outdoor digital signage must withstand extreme weather conditions such as direct sunlight, rain and dust. Brightness levels (NITS) must be especially high to ensure readability in sunlight. In addition, there is an emphasis on content management systems (CMS) that enable updates and control from anywhere at any time.
What Is DOOH and How Is It Different from Regular Outdoor Advertising
DOOH stands for Digital Out Of Home, and refers to all digital advertising media located in public places. This includes LED screens, interactive screens, and advertising solutions on advanced outdoor screens. The main advantage is the ability to change messages in real time and adapt the creative to different audiences.
While static signage requires physical printing and installation with every change, a DOOH campaign allows full operational flexibility. You can change messages throughout the day, tailor content to peak or off-peak hours, and integrate measurement mechanisms such as QR codes and dedicated phone numbers. A 2024 study by OAAA and Harris Poll indicates that digital outdoor advertising outperforms other media in driving consumer preference and action.
How Much Does Advertising on a Digital Outdoor Sign Cost
The price is determined by several key variables. Location is the most significant factor, with high-demand areas such as main roads and major traffic arteries costing more. Screen size directly affects cost, as do campaign duration and frequency of appearance. Broadcast hours during peak times are more expensive than off-peak hours.
Common pricing models for outdoor advertising include payment by day, week or month, or by broadcast cycle that guarantees a certain number of impressions. When requesting a quote, it is important to make sure it details exactly the frequency of appearance, spot length, hours of operation, creative-swap policy and performance reports.
What Must Appear in a Price Quote
A professional price quote for outdoor media buying must include a breakdown of actual screen time, the number of cycles per day, precise broadcast times, and options for swapping rotating creative. Without this breakdown, it is very difficult to compare different offers.
How to Choose the Right Location for Digital Outdoor Signage
Choosing a location for an outdoor sign is one of the most critical decisions in a campaign. The first question is who the audience passing by a specific location is and whether they are relevant to your business. Actual exposure time changes dramatically between a location with a stop (traffic light, traffic jam) and fast travel on an intercity highway.
For a local business, proximity to the point of sale is a central consideration in planning an outdoor campaign. Optimal visibility, the correct viewing angle, and the absence of obstructing objects are important technical factors. Likewise, competing signage clutter in the area can hurt the prominence of your message. It is important to note that it is essential to follow municipal signage guidelines and maintain road safety.
How Many Seconds Does a Viewer Have to Absorb a Message on a Digital Outdoor Sign
On average, a viewer has 3 to 7 seconds to absorb a message on digital outdoor screens, depending on the speed of traffic. This means the main message must be delivered with maximum speed and clarity. Good readability with large fonts and high contrast is essential, along with strong, prominent visual elements.
A single clear message is better than multiple details that are not absorbed. Optimal spot length ranges from 5 to 10 seconds, which is enough time to deliver a quick message without overwhelming the viewer. The higher the travel speed in the area, the less text and more visual hierarchy you need.
What Works Creatively on Digital Outdoor Signs
Effective outdoor sign creative is based on simple but critical principles. Simplicity and clarity are key, with one clear, focused message. Strong readability is achieved through high contrast between text and background and large fonts. A clear call to action (CTA) must define what the business wants the viewer to do.
Effective message frameworks include the problem-and-solution format, a unique value proposition with a time-limited offer, or a short brand message with social proof. Using seasonal promotions and topical events can increase relevance. Creating rotating creative makes it possible to test what works better.
Common Creative Mistakes on Outdoor Screens
The most common mistake is too much text that cannot be read within the short viewing time. Too wide a range of colors hurts readability, and lack of contrast makes the message invisible. The absence of a clear call to action and lack of brand context are a waste of an expensive advertising opportunity.
Is Video or a Static Image Better on a Digital Outdoor Screen
The answer depends on the typical viewing time at the location. A static image is preferable in places where viewing time is very short, such as highways, or when the message is simple and requires instant absorption. A strong, well-designed image can be highly memorable even in a brief exposure.
A short video is suitable for places with longer dwell time, such as traffic lights, traffic jams or bus stations. It is important to make sure the video is short (up to 15 seconds), with a clear message and not loaded with details. Whether image or video, the most important principle is one clear idea. Videos should not turn into slide shows.
How to Measure Success and ROI in DOOH Advertising
Measuring ROI in outdoor advertising is more challenging than online advertising, but there are effective tools. Direct measurement methods include displaying a discount code or a unique phone number for the campaign, directing to a specific landing page with UTM tracking, and customer surveys about source of arrival.
Indirect measurement methods include monitoring increases in branded Google searches in areas where the signage exists, tracking increases in physical traffic to the business, and monitoring engagement on social networks. The critical thing is to plan the measurement and attribution mechanism in advance, before the campaign begins, in order to get real insights on performance.
How to Integrate QR on a Digital Outdoor Sign Correctly
A QR code only works under certain conditions. Sufficient scanning time is required, which exists only at locations where viewers can stop and scan at leisure, such as bus stations and waiting areas. The code must be large enough and clear, with short text beside it that explains what users get when they scan.
In fast-moving locations such as traffic arteries and highways, QR simply does not work and may even pose a dangerous distraction. Effective alternatives include a short, memorable URL, a dedicated phone number, or a redirect to a brand search on Google. According to road safety reports, signage that causes driver distraction poses a real danger.
Critical Technical Requirements for Outdoor Screens
Outdoor screen brightness is measured in NITS and indicates the intensity of light emitted from the screen. While indoor screens require about 300-800 NITS, outdoor screens require 2,500-10,000 NITS and above to ensure readability in direct sunlight. The higher the NITS value, the more readable the screen will be under harsh lighting conditions.
Durability for outdoor screens is measured by IP rating, which indicates the level of protection against dust and water. The first digit indicates dust protection (0-6), and the second indicates liquid protection (0-8). IP65, for example, indicates full dust protection and protection against water jets. According to the IEC 60529 standard, choosing the appropriate IP rating is critical to the screen’s lifespan.
Why Brightness Is More Important than Resolution Outdoors
On outdoor screens, readability in strong daylight is the main challenge. A high-resolution screen that is not bright enough simply will not be visible. In contrast, a very bright screen with medium resolution will be readable and effective. LED screens are more common outdoors due to their high brightness and durability.
How to Manage Content Remotely for Outdoor Screens Effectively
A screen content management system (CMS) is the central tool that enables uploading, scheduling, editing and displaying content remotely without the need to physically reach the screen. Key features include scheduling content for specific days and hours, a friendly interface for fast uploading, health monitoring and oversight, and permission management.
For businesses with several screens or multiple campaigns, the ability to manage everything from one place saves time and prevents mistakes. Using ready-made design templates streamlines the creative production process. The GoMixApp platform offers digital signage solutions designed for full content management in a simple way, with Hebrew support and adaptation to the needs of Israeli businesses.
Comparison Table: Digital Outdoor Sign vs. Static Sign
The choice between digital and static signage depends on campaign goals, required flexibility, budget and measurement capability. The following table summarizes the main differences:
Criterion
Digital Outdoor Sign
Static Sign
Initial cost
High for screen, low for creative
Low for sign, high for printing
Message flexibility
Very high – immediate change
Low – requires reinstallation
Content type
Dynamic – video and animation
Static – fixed image or text
Time to go live
Fast – within minutes
Slow – days to weeks
A/B testing
Easily possible
Almost impossible
Adaptation to times of day
Excellent – changing messages
Not applicable
Measurement
Easier to build attribution mechanism
More challenging
Product life
Many years for the screen itself
Limited to a single physical sign
According to the signage bylaw, licensing fees for digital signage may be higher than for static signage, and this is an additional consideration in the decision.
Frequently Asked Questions
How much does a digital outdoor sign cost?
The price is determined by location, screen size, campaign duration, frequency of appearance and spot length. It usually involves broad ranges and not a uniform price, so it is important to get a detailed price quote that allows real comparison.
What is the difference between DOOH and regular outdoor signage?
DOOH is digital and allows full content flexibility, real-time changes, and advanced measurement capabilities. Static signage is limited to fixed content that requires physical replacement.
How do you choose a location for a digital outdoor screen?
Choose based on target audience, actual exposure time, proximity to business or point of sale, and optimal visibility. It is important to consider regulation and road safety.
How long does the ad appear each hour?
Appearance time usually ranges from 5 to 15 seconds per spot, and frequency of appearance depends on the agreement with the media provider and on campaign planning.
Which is better: video or image in digital outdoor signage?
It depends on viewing time. A strong image for a short time on a highway, a short and clear video for longer viewing time when stopping at a traffic light or bus stop.
How do you measure ROI in outdoor advertising?
Combine direct metrics such as dedicated codes and specific landing pages with indirect metrics such as a rise in brand searches and physical traffic to the business.
Does QR really work on outdoor signs?
QR is effective only at locations with enough time to scan and provided it is large and clear with an explanation of what users get when they scan. At fast-moving locations, it is preferable to use alternatives.
Want to know how to plan a digital outdoor signage campaign that generates real business results? The GoMixApp team will be happy to help you build the right solution for your business. Contact us now and we will start planning together.
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