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

Nedo stand

Filters

Nedo Tripod Heavy-Duty Wood

Original price €341,95 - Original price €341,95
Original price €341,95
€341,95
€341,95 - €341,95
Current price €341,95

Nedo Tripod Heavy-Duty Wood Plastic-coated wooden stand made of the highest quality (Heavy Duty) Extremely robust and weatherproof. Works gre...

View full details

Nedo Tripod Heavy-Duty Wood with Screw

Original price €357,95 - Original price €357,95
Original price €357,95
€357,95
€357,95 - €357,95
Current price €357,95

Nedo Tripod Heavy-Duty Wood with Screw Nedo Wooden Tripod Heavy Duty with large round tripod head, wing nut clamp, plastic-coated tripod leg, sn...

View full details

Nedo Tripod Short Aluminum

Original price €164,95 - Original price €164,95
Original price €164,95
€164,95
€164,95 - €164,95
Current price €164,95

Nedo Tripod Short Aluminum A short tripod in aluminum, specially adapted for lightweight construction lasers, so-called line & point lasers...

View full details

Nedo Stand Laser scanner 1.12-5 m

Original price €1.944,95 - Original price €1.944,95
Original price €1.944,95
€1.944,95
€1.944,95 - €1.944,95
Current price €1.944,95

Stand for Laser Scanner 1.12-5 meters The Nedo Industrial Line height stand is specially designed for the use of 3D laser scanners. The lase...

View full details

Nedo Tripod Medium-Duty Wood 1.0-1.65

Original price €277,95 - Original price €277,95
Original price €277,95
€277,95
€277,95 - €277,95
Current price €277,95

Nedo Tripod Medium-Duty Wood 1.0-1.65 Quick-clamp system Minimum effective height: 1.0 m Maximum effective height: 1.65 m

Nedo Crank Stand 0.6-1.51

Original price €363,95 - Original price €363,95
Original price €363,95
€363,95
€363,95 - €363,95
Current price €363,95

Nedo Crank Stand 0.6-1.51 Quality tripod from German Nedo. Height dimensions 0.6-1.51m.

Nedo Stand Aluminum 1.06-1.72 m

Original price €286,95 - Original price €286,95
Original price €286,95
€286,95
€286,95 - €286,95
Current price €286,95

Nedo Stand Aluminum 1.02 - 1.72 m Nedo Heavy Duty Aluminum tripod adapted for construction lasers, theodolites, total stations & rotation...

View full details

Nedo crank stand 0.75-1.73 m 4.60 KG

Original price €406,95 - Original price €406,95
Original price €406,95
€406,95
€406,95 - €406,95
Current price €406,95

Nedo crank stand 0.75-1.73 m 4.60 KG Specifications: Min. usable height approx. 0.73 m Max. usable height approx. 1.73 m Transport le...

View full details

Nedo Stand Laser scanner 1.05-2.57 m

Original price €918,95 - Original price €918,95
Original price €918,95
€918,95
€918,95 - €918,95
Current price €918,95

Nedo Stand Laser scanner 1.05-2.57 m Min. effective height: 1.05 m Max. effective height: 2.57 m Tripod head/plate: flat, ø110 mm Maxim...

View full details

Nedo Tripod Alu 0.85-3.02 m

Original price €771,95 - Original price €771,95
Original price €771,95
€771,95
€771,95 - €771,95
Current price €771,95

Nedo Tripod Aluminum 0.85-3.02 m Heavy duty With reinforced extra legs. Minimum effective height 0.85 m Maximum effective height: 3.02 m ...

View full details

Nedo Crank stand with leg brace 1.77-4.00 M 11.20KG

Original price €1.050,95 - Original price €1.050,95
Original price €1.050,95
€1.050,95
€1.050,95 - €1.050,95
Current price €1.050,95

Nedo Crank stand with leg brace 1.77-4.00 M 11.20KG Specifications: Min. usable height approx. 1.77 m Max. usable height approx. 4.00 m...

View full details

Nedo Crank stand 0.80-2.76 m Weight 5.32KG

Original price €353,95 - Original price €353,95
Original price €353,95
€353,95
€353,95 - €353,95
Current price €353,95

Nedo Crank stand 0.80-2.76 m Weight 5.32KG Specifications: Min. usable height approx. 0.80 m Max. usable height approx. 2.76 m Transp...

View full details

Stand Floor-Ceiling with support legs Nedo

Original price €107,95 - Original price €107,95
Original price
€107,95
€107,95 - €107,95
Current price €107,95

Tripod Floor-Ceiling with support legs - Nedo Ada Silver Height adjustment: up to 3.6 meters Rubberized base and top Spring function for ...

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