Skip to content
GEOFIX NYA WEBBSHOP ÄR HÄR - klicka här för att få information om hur du som redan är Geofix kund kommer åt ditt webbkonto
GEOFIX NYA WEBBSHOP ÄR HÄR - klicka här för att få information om hur du som redan är Geofix kund kommer åt ditt webbkonto

Work lighting

Headlamp 120 lumens Ledlenser iH3

Original price €43,95 - Original price €43,95
Original price
€43,95
€43,95 - €43,95
Current price €43,95

Headlamp Ledlenser iH3, 120 lumens Headlamp that provides 5-120 lumens, for a long and wide light beam. Zoom and rotatable head make the la...

View full details

Silva Headlamp MR400

Original price €71,95 - Original price €71,95
Original price €71,95
€71,95
€71,95 - €71,95
Current price €71,95

The MR400 is a robust and fully waterproof headlamp with a very long burn time and multiple uses thanks to the possibilities of attaching the lamp...

View full details

Silva Headlamp CR230

Original price €35,95 - Original price €35,95
Original price €35,95
€35,95
€35,95 - €35,95
Current price €35,95

The CR230 is a lightweight headlamp that is easy to use and uses 3 AAA batteries that are placed in the same compartment as the lamp. This model f...

View full details

Silva Headlamp MR200

Original price €47,95 - Original price €47,95
Original price €47,95
€47,95
€47,95 - €47,95
Current price €47,95

The MR200 is a robust and fully waterproof headlamp with a long burn time and an LED source that makes it ideal for when you need to see very close...

View full details

Silva Headlamp LR600 RC

Original price €202,95 - Original price €202,95
Original price €202,95
€202,95
€202,95 - €202,95
Current price €202,95

The LR600 RC is a modular and flexible headlamp with several accessories that provide many possibilities for attaching the headlamp. The LR600 RC h...

View full details

Warning beacon 12 volts

Original price €127,95 - Original price €127,95
Original price
€127,95
€127,95 - €127,95
Current price €127,95

Warning beacon 12 volts Warning beacon with belt drive where the bulb is mounted vertically. Impact-resistant polycarbonate light cover with ba...

View full details

Peli 9490 RALS - Work light

Original price €1.974,95 - Original price €1.974,95
Original price €1.974,95
€1.974,95
€1.974,95 - €1.974,95
Current price €1.974,95

Overview Technical description Peli 9490 Remote Area Lighting System (RALS) Peli 9490 RALS Work light for all occasions when you...

View full details

Peli 9480 RALS - Work light

Original price €852,95 - Original price €852,95
Original price €852,95
€852,95
€852,95 - €852,95
Current price €852,95

Overview Technical description Peli 9480 Remote Area Lighting System (RALS) Peli 9480 RALS Work light for all occasions when you...

View full details

Peli 9430 RALS - Work light

Original price €1.203,95 - Original price €1.203,95
Original price
€1.203,95
€1.203,95 - €1.203,95
Current price €1.203,95

Overview Technical description Peli 9430 Remote Area Lighting System (RALS) Peli 9430 RALS Work light for all occasions when you...

View full details

Silva Headlamp IGNITE A

Original price €715,95 - Original price €715,95
Original price
€715,95
€715,95 - €715,95
Current price €715,95

IGNITE is a unique headlamp that turns night into day. With 8 powerful LEDs and 10,000 lumens, it delivers an incredible amount of light, while hav...

View full details
*/ (function () { window.dataLayer = window.dataLayer || []; const CONFIG = { CURRENCY: "SEK", // Lägg gärna till/justera selektorer om ditt tema använder andra element CHECKOUT_BUTTON_SELECTORS: [ 'button[name="checkout"]', 'input[name="checkout"]', 'form[action*="/checkout"] [type="submit"]', 'a[href*="/checkout"]' ] }; function fetchCart() { return fetch('/cart.js', { credentials: 'same-origin' }) .then(r => r.json()) .catch(() => null); } function mapItems(cart) { if (!cart || !Array.isArray(cart.items)) return []; return cart.items.map((it, idx) => ({ item_id: String(it.variant_id || it.id || it.sku || ''), item_name: it.product_title || it.title || '', item_brand: 'Geofix AB', item_variant: it.variant_title || '', price: (typeof it.final_price === 'number' ? it.final_price : it.price || 0) / 100, quantity: it.quantity || 1, index: idx + 1 })); } function totalValue(items) { return items.reduce((s, i) => s + (Number(i.price) || 0) * (Number(i.quantity) || 0), 0); } function isCheckoutClick(target) { if (!target) return false; // träff på definierade selektorer for (const sel of CONFIG.CHECKOUT_BUTTON_SELECTORS) { if (target.closest(sel)) return true; } // fallback: formulär som postar till /checkout const form = target.closest('form'); if (form && /\/checkout/i.test(form.action || '')) return true; return false; } // Lyssna brett i capture-fasen så vi hinner hämta vagnen innan redirect document.addEventListener('click', function (e) { const el = e.target; if (!isCheckoutClick(el)) return; // Hämta /cart.js och pusha begin_checkout snabbt innan sidan lämnas fetchCart().then(cart => { const items = mapItems(cart); const value = totalValue(items); window.dataLayer.push({ event: 'begin_checkout', ecommerce: { currency: CONFIG.CURRENCY, value: value, items: items } }); }); // Ingen preventDefault – låt redirect ske normalt }, true); // Extra säkerhet: lyssna även på submit (t.ex. enter-tryck i formulär) document.addEventListener('submit', function (e) { const form = e.target; if (!form) return; if (!/\/checkout/i.test(form.action || '')) return; fetchCart().then(cart => { const items = mapItems(cart); const value = totalValue(items); window.dataLayer.push({ event: 'begin_checkout', ecommerce: { currency: CONFIG.CURRENCY, value: value, items: items } }); }); }, true); })();