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

Products

Filters

Artline 700 - Extra fine tip

Original price €2,95 - Original price €2,95
Original price €2,95
€2,95
€2,95 - €2,95
Current price €2,95

Artline 700 - Extra fine tip For permanent marking on metal, glass, paper, plastic, cardboard, textiles, etc. Waterproof Does not fade ...

View full details

Marking tape Environment 20mm x 65m short-term marking

Original price €2,95 - Original price €2,95
Original price €2,95
€2,95
€2,95 - €2,95
Current price €2,95

Environmental Non-woven marking tape 20 mm, short-term marking Single-colored marking tape, carving tape in several selectable colors. Made of ...

View full details

Marking tape PE plastic 30mm x 100 m

Original price €4,95 - Original price €4,95
Original price €4,95
€4,95
€4,95 - €4,95
Current price €4,95

Marking tape PE plastic 30mm x 100 m The marking tapes are made of 100% environmentally friendly polyester in a choice of solid colours and are...

View full details

Marking flag 12x10cm Length 80cm 100 pack

Original price €53,95 - Original price €53,95
Original price €53,95
€53,95
€53,95 - €53,95
Current price €53,95

Marking flag 12x10cm Length 80cm 100 pack Marking flags are a good alternative to stake sticks if a long lifespan is not required. ...

View full details

Marker N50 - Oil-resistant with round tip, 12-pack

Original price €2,95 - Original price €2,95
Original price €2,95
€2,95
€2,95 - €2,95
Current price €2,95

Pentel Marker N50 - Oil-resistant with round tip, 12-pack Pentel N50 is a powerful permanent marker with an aluminum body and a round, durable ...

View full details

Marker pen Pilot 100 Round 1-4mm

Original price €1,95 - Original price €1,95
Original price €1,95
€1,95
€1,95 - €1,95
Current price €1,95

Marker pen Pilot 100 Round 1-4mm The marker pen that writes on a variety of materials such as wood, metal and plastic. It is water, light, cold ...

View full details

Milwaukee Inkzall Marker Pen

Original price €3,95 - Original price €3,95
Original price €3,95
€3,95
€3,95 - €3,95
Current price €3,95

Milwaukee Inkzall Marker Pen Durable tip, stays sharp and doesn't push into the pen under pressure Durable tip – acrylic tip, ideal for une...

View full details

Pentel Highlighter with Push Button - 12 pack

Original price €30,95 - Original price €30,95
Original price €30,95
€30,95
€30,95 - €30,95
Current price €30,95

Pentel highlighter With the SXS15 Handy Line S highlighters you get a highlighter in beautiful and bright colors. The pen has a smart and practi...

View full details

Strong Marker 12-pack, non-fluorescent forest paint with long durability

Original price €93,95 - Original price €93,95
Original price €93,95
€93,95
€93,95 - €93,95
Current price €93,95

Soppec Strong Marker 12-pack, marking paint for long-lasting durability in forests and soil This spray paint is not stocked by us but is a ...

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