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

Geo-Fennel

Filters

CrossPointer 5 SP Point laser

Original price €465,95 - Original price €465,95
Original price €465,95
€465,95
€465,95 - €465,95
Current price €465,95

CrossPointer 5 GREEN A self-leveling GREEN line laser with outstanding line visibility up to 50 m Combination of a 5-point and cross line ...

View full details

Geo6X GREEN KIT Selection PRO

Original price €589,95 - Original price €589,95
Original price €589,95
€589,95
€589,95 - €589,95
Current price €589,95

Geo6X GREEN KIT Selection PRO COMPLETE LASER Li-ion batteries, charger, wall mount and bag. You get an innovative tool for the professional us...

View full details

FLG 40-PowerCross Plus GREEN SP

Original price €213,95 - Original price €213,95
Original price €213,95
€213,95
€213,95 - €213,95
Current price €213,95

FLG 40-PowerCross Plus GREEN SP is a Selection PRO product with special features Outstanding visibility of the laser lines Very long v...

View full details

Geo5P 5-Point Laser

Original price €244,95 - Original price €244,95
Original price €244,95
€244,95
€244,95 - €244,95
Current price €244,95

Geo5P 5-point laser 5 self-leveling laser points at right angles to each other: up, down, forward, left, right. For pipe laying, alignment...

View full details

FPL C-GREEN Line Laser

Original price €419,95 - Original price €419,95
Original price €419,95
€419,95
€419,95 - €419,95
Current price €419,95

FPL C-GREEN FPL C-GREEN projects a highly visible laser line and a laser cross. Easy to turn on and off with a switch button. Multifunctional m...

View full details

FLG 6X- Green Multi-Line Laser

Original price €441,95 - Original price €441,95
Original price €441,95
€441,95
€441,95 - €441,95
Current price €441,95

Multi-Line Laser FLG 6X-GREEN Say hello to the new member of the 6X product family 3 x 360° laser lines - form 6 laser crosses Laser lin...

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); })();