(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
Introduction: The Digital Sign That Sells – How a Single Screen Equals Thousands of Customers
In recent years, digital signage has become an essential marketing tool for businesses in Israel. From LCD screens to massive LED displays, these signs capture the attention of potential customers, drive sales, and elevate brand image. But behind the bright lights lies a complex bureaucratic process involving licensing requirements, municipal property tax (arnona) on signage, regulation of light intensity, and more.
Key Takeaways
Digital signage is subject to municipal bylaws that vary between authorities
You must verify licensing requirements, permitted dimensions, and lighting restrictions
Municipal property tax on signs is calculated by size, type, and location of the sign
Interior signage is generally exempt from licensing – exterior signage requires approval
This guide brings together everything you need to know about digital signage in Israel.
Which Digital Signage Requires Licensing and Fees?
A digital sign is a screen placed in public space or on a business facade that displays changing content – usually advertising – using technologies such as LED or LCD. This content may include text, animations, rotating images, and sometimes video clips. Once the sign faces the street or a public space, even if the screen is placed inside the store, it falls under regulation requiring licensing and a signage fee, and you must check with the local authority whether a license and fee are required.
When Is It Considered an Advertising Screen?
If the sign displays marketing information – such as promotions, slogans, products, or any message intended to promote the business – it is considered an advertising sign and requires licensing and a fee. Even displaying the business name in a large font with graphic design may be considered advertising under municipal interpretation.
Distinguishing Between Urban and Inter-Urban Signage
Urban Signage
This is signage placed within the jurisdiction of a local authority – a municipality or local council. Approval is granted by the signage department of the local authority in accordance with the municipal bylaw. Example: an LED screen above a pizzeria in Ramat Gan.
Inter-Urban Signage
Signs placed along inter-urban roads (such as Highways 1, 6, or 4) are the responsibility of the Ministry of Transport and Netivei Israel. Stricter regulations apply regarding light intensity, sightlines, and signage content. For example: massive billboards on overpasses.
Are Videos or Animated Images Permitted?
Inside businesses or commercial centers – any content may be displayed, including video.
On urban streets – images and animations may be displayed as long as they change at a rate of no less than 10 seconds.
On inter-urban roads – videos, continuous motion, or confusing content that could distract drivers are prohibited.
Is There Regulation on Screen Light Intensity?
Absolutely. Particularly powerful LED signs may compromise safety, cause glare, or disturb residents. Therefore:
Urban signage: typically limited to up to 3,500 nits at night.
Inter-urban signage: no more than 2,500 nits, with mandatory automatic dimming system.
The Licensing Process – Step by Step
Submit an application to the municipality/council, including a layout, technical specifications, and an ownership declaration.
Review by the signage committee.
Technical and safety approval.
Payment of the signage fee (considered part of municipal property tax for businesses).
Receipt of a one-year license.
Estimated time: 3-16 weeks depending on the local authority.
How Much Does It Cost? Municipal Property Tax Rates for Digital Signage
The digital signage fee varies considerably between cities and is influenced by several key parameters: the size of the sign, its location (large city versus local council), and the type of sign – whether it is an illuminated advertising sign, an informational sign, or an exterior LED sign. For example, in Tel Aviv a digital advertising sign measuring 5 square meters may cost approximately NIS 10,350 per year, while in the Mateh Asher Regional Council a similar exterior sign measuring 3 square meters costs only about NIS 3,500 per year. The larger, more prominent, and more public-facing the sign, the higher the cost. Major cities like Tel Aviv and Jerusalem charge higher rates due to demand, strict municipal regulation, and high public exposure. By contrast, regional councils and peripheral areas offer more favorable rates. Content type also matters – a sign displaying only information may be classified as informational rather than advertising, thereby reducing the fee. It is therefore important to carefully consider where the sign is placed, what is displayed on it, and its size – all of which will significantly affect the annual payment.
Frequently Asked Questions (FAQ)
Is a license required for a digital sign inside a display window?
Yes, if it is illuminated and visible from outside, it is considered an exterior sign
What is the difference between a branded digital sign and an advertising digital sign?
Any marketing message beyond the business name is considered advertising
When does a digital sign not require a license?
Digital signs that are not visible from the public space
Does municipal property tax (arnona) include the signage fee?
No. The signage fee is an additional component on top of regular municipal property tax
What happens if you don’t renew a license for an advertising screen?
An immediate fine, and sometimes a demand for removal
Is there a maximum height for a digital sign?
Yes, each authority sets the maximum height in the layout (for example 6 meters)
Can an advertising screen be placed on a roof?
Sometimes yes, but it requires special approval and safety infrastructure
Can temporary licensing be issued for an advertising screen?
Yes, in cases such as exhibitions, holidays, or seasonal promotions
How do you know which bylaw applies to placing a digital sign?
By address – check the local authority’s website
What about a mobile sign (on a vehicle)?
It is not considered a sign under signage laws, but is subject to other advertising laws
How to Save on Signage Fees and Municipal Property Tax
Many businesses discover in hindsight that they could have saved thousands of shekels per year if only they had planned their sign correctly from the start. For example, a sign displaying only the business name or logo, without marketing messages, is classified by most authorities as an “identification sign” – and may benefit from a reduced signage fee or even a full exemption. It is recommended to check with your local authority before designing the sign. Location also matters: a digital screen placed inside the display window rather than outside it is sometimes not subject to any fee at all. In addition, many fees are charged according to area and actual number of months in use – so compact design and ensuring the sign is taken down when not in use will significantly reduce payment. It is also worth checking eligibility for property tax discounts – for example for small businesses owned by senior citizens or in preferred areas. The smart approach is not just to advertise, but to do so wisely.
Common Mistakes and Their Consequences
❌ “The sign is only up for a few days, no license needed” – even a temporary sign requires a temporary license.
❌ “Everyone is putting them up, so I will too” – the law is enforced retroactively, and fines do come.
❌ “I put up a logo, not a promotion – it’s allowed” – a logo and slogan also count as advertising.
❌ “The municipality won’t notice” – when they do notice, you’ll pay retroactively as well.
Tips That Will Make Your Life Easy (and Economical)
💡 Work with a signage consultant – it will save a lot of time and unnecessary mistakes.
💡 Plan the sign according to height and width restrictions in advance.
💡 Use a screen with automatic dimming – it will get approved faster.
💡 Use moderate animation – this will affect cost and approval.
💡 Avoid content that changes too quickly – prohibited in most authorities.
💡 Consider integrating digital signs inside the property but facing outward.
💡 Don’t compromise on the highest-quality graphic rendering.
💡 Request the list of requirements from the local authority in advance – it’s not always on the website.
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