(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 wc_single_product_params = {"i18n_required_rating_text":"Please select a rating","i18n_rating_options":["1 of 5 stars","2 of 5 stars","3 of 5 stars","4 of 5 stars","5 of 5 stars"],"i18n_product_gallery_trigger_text":"View full-screen image gallery","review_rating_required":"yes","flexslider":{"rtl":false,"animation":"slide","smoothHeight":true,"directionNav":false,"controlNav":"thumbnails","slideshow":false,"animationSpeed":500,"animationLoop":false,"allowOneSlide":false},"zoom_enabled":"1","zoom_options":[],"photoswipe_enabled":"1","photoswipe_options":{"shareEl":false,"closeOnScroll":false,"history":false,"hideAnimationDuration":0,"showAnimationDuration":0},"flexslider_enabled":"1"};
//# sourceURL=wc-single-product-js-extra
Standing LED Poster 1.8/2.5 mm, Modular LED screen for Store, Restaurant and Events
8,280.00 ₪ – 10,120.00 ₪
Standing LED Poster 1.8/2.5 mm, up to 8 units can be connected to each other to create a continuous video wall. 64×192 cm per unit, IP30, 800 nits, 3,840 Hz refresh rate, 36 months warranty. Starting from ₪8,280.
Standing LED Poster 1.8/2.5 mm, up to 8 units can be connected to each other to create a continuous video wall. 64×192 cm per unit, IP30, 800 nits, 3,840 Hz refresh rate, 36 months warranty. Starting from ₪8,280.
Narrow flat base, with or without casters, same price
Narrow flat base, with or without casters, same price
Warranty
36 months on-site service
36 months on-site service
Standard Certifications
CE, RoHS
CE, RoHS
Why Modular?
GoMixApp’s standing LED poster (Linkable) is an indoor standing display unit measuring 64 x 192 cm, with a pixel pitch of 1.8 mm or 2.5 mm to choose from. Each panel weighs approximately 10 kg, stands on a narrow flat base (with or without casters, at the same price), and is connected via RJ45 and HDMI ports, allowing daisy-chain connection of multiple units to create a vertical video wall of unlimited height. The 3,840 Hz refresh rate ensures a clean display even when filmed by cameras, critical for stores and event halls. The wide 160-degree horizontal viewing angle ensures full visibility for all entering the store. 800 nits brightness is sufficient for a brightly lit indoor environment. The warranty is 36 months on-site service.
Each panel stands close to the next, the bases sit side by side without a gap, creating a continuous surface without visible seams. Up to 8 standing panels can be connected to one wide video wall. Changing the configuration (adding or removing panels) does not require equipment replacement, only re-wiring the RJ45 chain and setting the panel map in the NovaStar controller. The wheels on the base (optional, no extra charge) allow the array to be moved and repositioned within minutes.
Panels connect in a daisy-chain to create a vertical or wide video wall
Where to Use Standing LED Poster
For Stores and Shop Windows
A standing LED poster replaces static signage in a shop window and opens a dynamic communication channel with passersby. 800 nits brightness maintains readability even under strong spotlighting of the display window, and high pixel density (160 thousand to 309 thousand pixels per sqm) ensures sharp product display from a distance of half a meter to two meters. Promotions, product videos, or seasonal content can be displayed, and everything can be changed remotely through our digital signage system. Combining 2 to 4 panels in a chain allows for a vertical display almost two meters high, or a square array with a wide front.
For Showrooms and Exhibition Halls
In a showroom, the poster serves as a central brand screen or a product banner next to physical products. A refresh rate of 3,840 Hz prevents flickering in video recordings by customers visiting the hall, and a 160-degree horizontal viewing angle ensures content is seen in full sharpness even from off-axis viewing positions. The 36-month on-site service warranty is suitable for continuous commercial use of 12 to 18 hours daily, without the need to transport equipment to a lab. The controller can be connected to our CMS to update brand display as part of a multi-branch campaign.
For Restaurants and Digital Menus
In restaurants and fast-food chains, a standing LED poster replaces the static wall menu with a dynamic digital menu. Prices can be changed, hourly specials added, and appetizing food images displayed, all updated remotely through a single CMS for all branches. The vertical shape (64 x 192 cm) saves wall space and is suitable for crowded waiting areas. 2 to 3 panels can be connected in a chain to divide the menu into 3 categories (breakfast / lunch / drinks), with each panel displaying a section. The NovaStar controller supports automatic schedules, so the menu changes according to the time of day.
For Events and Malls
The poster is modular and portable, the wheeled base allows for quick movement, ideal for events, trade fairs, and mall entrances. An array of 4 to 8 panels can be set up within two hours and dismantled at the end of the event. A weight of approximately 10 kg per panel allows for installation by 2 people without special equipment. For display columns in shopping centers, standing panels in a chain display tall advertising messages visible from a distance. For event stages, an array of 6 panels creates a full-resolution panoramic background screen. HDMI support allows direct connection from a projection computer or sound system.
Array of standing panels for a panoramic video wall at an event or showroom
Price and What’s Included in the Deal
All prices on the page are in NIS and do not include VAT. The price for a single panel unit (64 x 192 cm, including base with or without wheels, at the same price) is:
Standing LED Poster 1.8 mm, ₪10,120 per unit
Standing LED Poster 2.5 mm, ₪8,280 per unit
What’s Included in the Price
Frameless LED panel 64×192 cm, with narrow flat base
Choice of base with 4 casters or base without wheels, at the same price
Built-in NovaStar receiver controller
One HDMI cable and one RJ45 cable per unit
36 months on-site service warranty
Technical documentation in Hebrew and initial installation guide
What’s Not Included and Requires a Quote
Professional on-site installation, power and communication connection, and on-site calibration
Central NovaStar sending controller for connecting to an array larger than 4 panels
Wall mount or dedicated display pole (can be purchased separately, compatible stand or display pole)
Wiring and power delivery from the electrical panel to the panel location
Payment terms: 50% upon order (trigger for production and order), the balance upon completion of installation. Average delivery up to 14 business days from order confirmation. Request a customized quote includes an installation estimate based on location and number of panels.
Installation and Shipping
The standing LED poster has an IP30 protection rating, meaning protection against granular dust and not against water. It is intended for indoor installation only, in a store, showroom, restaurant, or indoor mall. For outdoor installation requiring resistance to rain, water vapor, or pressure washing, an IP65 or higher model is required. GoMixApp’s outdoor version with IP65 rating for pools and gardens is used for gardens, courtyards, balconies, and open areas.
Nationwide delivery in Israel within an average of 14 business days from order confirmation. Panels are individually packed in corrugated cardboard with foam protection corners, the base is shipped separately. After coordination, the installation team arrives at the site with all necessary equipment (panels, bases, controller, cables, wall/pole adapters), performs installation, wiring, and NovaStar calibration on-site, and instructs your team on basic use of the controller.
Warranty and Support
Manufacturer’s warranty of 36 months (3 years) on-site service. In case of a malfunction, a service technician arrives at the site, diagnoses the problem, and replaces the defective panel or controller without the expense of transporting equipment to a lab. The warranty covers panel failures, dead pixels above the industry-accepted threshold, and controller malfunctions. The warranty can be extended from 36 to 60 months (5 years) through a screen hardware extended warranty package, especially relevant for businesses with high availability requirements.
Phone support in Hebrew during business hours. Quick response via the website’s chat system, or through your GoMixApp team contacts. With extended warranty service, proactive communication includes an annual preventive maintenance visit.
<!– wp:yoast/how-to-block {"jsonDescription":"A 5-step guide to installing a standing LED poster array, from site survey to content loading.","defaultDurationText":"","hasDuration":false,"durationText":"","jsonName":"How to Install a Standing LED Poster","steps":[{"id":"how-to-step-1","name":["Site Survey and Measurement"],"text":["Determining the number of panels, location, and display settings."]
var wc_add_to_cart_variation_params = {"wc_ajax_url":"/?wc-ajax=%%endpoint%%","i18n_no_matching_variations_text":"Sorry, no products matched your selection. Please choose a different combination.","i18n_make_a_selection_text":"Please select some product options before adding this product to your cart.","i18n_unavailable_text":"Sorry, this product is unavailable. Please choose a different combination.","i18n_reset_alert_text":"Your selection has been reset. Please select some product options before adding this product to your cart."};
//# sourceURL=wc-add-to-cart-variation-js-extra
var woocommerce_addons_params = {"price_display_suffix":"ex. VAT","tax_enabled":"1","price_include_tax":"","display_include_tax":"","ajax_url":"/wp-admin/admin-ajax.php","i18n_validation_required_select":"Please choose an option.","i18n_validation_required_input":"Please enter some text in this field.","i18n_validation_required_number":"Please enter a number in this field.","i18n_validation_required_file":"Please upload a file.","i18n_validation_letters_only":"Please enter letters only.","i18n_validation_numbers_only":"Please enter numbers only.","i18n_validation_letters_and_numbers_only":"Please enter letters and numbers only.","i18n_validation_email_only":"Please enter a valid email address.","i18n_validation_min_characters":"Please enter at least %c characters.","i18n_validation_max_characters":"Please enter up to %c characters.","i18n_validation_min_number":"Please enter %c or more.","i18n_validation_max_number":"Please enter %c or less.","i18n_validation_decimal_separator":"Please enter a price with one monetary decimal point (%c) without thousand separators.","i18n_sub_total":"Subtotal","i18n_remaining":"\u003Cspan\u003E\u003C/span\u003E characters remaining","currency_format_num_decimals":"2","currency_format_symbol":"\u20aa","currency_format_decimal_sep":".","currency_format_thousand_sep":",","trim_trailing_zeros":"","is_bookings":"","trim_user_input_characters":"1000","quantity_symbol":"x ","datepicker_class":"wc_pao_datepicker","datepicker_date_format":"MM d, yy","gmt_offset":"-3","date_input_timezone_reference":"default","currency_format":"%v\u00a0%s"};
var woocommerce_addons_params = {"price_display_suffix":"ex. VAT","tax_enabled":"1","price_include_tax":"","display_include_tax":"","ajax_url":"/wp-admin/admin-ajax.php","i18n_validation_required_select":"Please choose an option.","i18n_validation_required_input":"Please enter some text in this field.","i18n_validation_required_number":"Please enter a number in this field.","i18n_validation_required_file":"Please upload a file.","i18n_validation_letters_only":"Please enter letters only.","i18n_validation_numbers_only":"Please enter numbers only.","i18n_validation_letters_and_numbers_only":"Please enter letters and numbers only.","i18n_validation_email_only":"Please enter a valid email address.","i18n_validation_min_characters":"Please enter at least %c characters.","i18n_validation_max_characters":"Please enter up to %c characters.","i18n_validation_min_number":"Please enter %c or more.","i18n_validation_max_number":"Please enter %c or less.","i18n_validation_decimal_separator":"Please enter a price with one monetary decimal point (%c) without thousand separators.","i18n_sub_total":"Subtotal","i18n_remaining":"\u003Cspan\u003E\u003C/span\u003E characters remaining","currency_format_num_decimals":"2","currency_format_symbol":"\u20aa","currency_format_decimal_sep":".","currency_format_thousand_sep":",","trim_trailing_zeros":"","is_bookings":"","trim_user_input_characters":"1000","quantity_symbol":"x ","datepicker_class":"wc_pao_datepicker","datepicker_date_format":"MM d, yy","gmt_offset":"-3","date_input_timezone_reference":"default","currency_format":"%v\u00a0%s"};
//# sourceURL=woocommerce-addons-validation-js-extra
var woocommerce_addons_params = {"price_display_suffix":"ex. VAT","tax_enabled":"1","price_include_tax":"","display_include_tax":"","ajax_url":"/wp-admin/admin-ajax.php","i18n_validation_required_select":"Please choose an option.","i18n_validation_required_input":"Please enter some text in this field.","i18n_validation_required_number":"Please enter a number in this field.","i18n_validation_required_file":"Please upload a file.","i18n_validation_letters_only":"Please enter letters only.","i18n_validation_numbers_only":"Please enter numbers only.","i18n_validation_letters_and_numbers_only":"Please enter letters and numbers only.","i18n_validation_email_only":"Please enter a valid email address.","i18n_validation_min_characters":"Please enter at least %c characters.","i18n_validation_max_characters":"Please enter up to %c characters.","i18n_validation_min_number":"Please enter %c or more.","i18n_validation_max_number":"Please enter %c or less.","i18n_validation_decimal_separator":"Please enter a price with one monetary decimal point (%c) without thousand separators.","i18n_sub_total":"Subtotal","i18n_remaining":"\u003Cspan\u003E\u003C/span\u003E characters remaining","currency_format_num_decimals":"2","currency_format_symbol":"\u20aa","currency_format_decimal_sep":".","currency_format_thousand_sep":",","trim_trailing_zeros":"","is_bookings":"","trim_user_input_characters":"1000","quantity_symbol":"x ","datepicker_class":"wc_pao_datepicker","datepicker_date_format":"MM d, yy","gmt_offset":"-3","date_input_timezone_reference":"default","currency_format":"%v\u00a0%s"};
var woocommerce_addons_params = {"price_display_suffix":"ex. VAT","tax_enabled":"1","price_include_tax":"","display_include_tax":"","ajax_url":"/wp-admin/admin-ajax.php","i18n_validation_required_select":"Please choose an option.","i18n_validation_required_input":"Please enter some text in this field.","i18n_validation_required_number":"Please enter a number in this field.","i18n_validation_required_file":"Please upload a file.","i18n_validation_letters_only":"Please enter letters only.","i18n_validation_numbers_only":"Please enter numbers only.","i18n_validation_letters_and_numbers_only":"Please enter letters and numbers only.","i18n_validation_email_only":"Please enter a valid email address.","i18n_validation_min_characters":"Please enter at least %c characters.","i18n_validation_max_characters":"Please enter up to %c characters.","i18n_validation_min_number":"Please enter %c or more.","i18n_validation_max_number":"Please enter %c or less.","i18n_validation_decimal_separator":"Please enter a price with one monetary decimal point (%c) without thousand separators.","i18n_sub_total":"Subtotal","i18n_remaining":"\u003Cspan\u003E\u003C/span\u003E characters remaining","currency_format_num_decimals":"2","currency_format_symbol":"\u20aa","currency_format_decimal_sep":".","currency_format_thousand_sep":",","trim_trailing_zeros":"","is_bookings":"","trim_user_input_characters":"1000","quantity_symbol":"x ","datepicker_class":"wc_pao_datepicker","datepicker_date_format":"MM d, yy","gmt_offset":"-3","date_input_timezone_reference":"default","currency_format":"%v\u00a0%s"};
//# sourceURL=woocommerce-addons-js-extra
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