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

Rod brackets

Filters

Leica GHT63 pole mount / holder for GHT62

Original price €212,95 - Original price €212,95
Original price €212,95
€212,95
€212,95 - €212,95
Current price €212,95

Leica GHT63 pole mount / holder for GHT62, GHT39, GHT56 Leica Original GHT63 rod mount for cradle / holder for control unit. Pole mount fo...

View full details

Universal Rod Holder Claw 155

Original price €156,95 - Original price €156,95
Original price €156,95
€156,95
€156,95 - €156,95
Current price €156,95

Universal Rod Holder Claw 155 This clamp is manufactured in such a way that it is not possible to crush the rod during assembly. Made of durabl...

View full details

Rod mount RAM Tough-Claw with ball 1.5''

Original price €78,95 - Original price €78,95
Original price €78,95
€78,95
€78,95 - €78,95
Current price €78,95

Rod mount RAM Tough-Claw with ball 1.5'' A version designed to quickly clamp onto round, square and odd-shaped rails and bars ranging from 16...

View full details

Adapter Seco Pole mount 32mm - 25mm

Original price €21,95 - Original price €21,95
Original price €21,95
€21,95
€21,95 - €21,95
Current price €21,95

Adapter Seco Pole mount 32mm - 25mm Universal Claw Seco adapter that reduces the diameter of a 32mm measuring rod to a 25mm measuring rod.

Universal Rod Holder Claw 152

Original price €149,95 - Original price €149,95
Original price €149,95
€149,95
€149,95 - €149,95
Current price €149,95

Universal Rod Holder Claw 152 This clamp is manufactured in such a way that it is not possible to crush the rod during assembly. Made of durabl...

View full details

Rod mount RAM with articulated arm 1''

Original price €89,95 - Original price €89,95
Original price €89,95
€89,95
€89,95 - €89,95
Current price €89,95

RAM Tough-Claw, a rod mount with articulated arm for connecting a 1'' ball A small version designed to quickly clamp onto round, square and o...

View full details

Rod bracket 5198-055

Original price €141,95 - Original price €141,95
Original price €141,95
€141,95
€141,95 - €141,95
Current price €141,95

Rod bracket 5198-055 Universal bracket that fits bars with Ø 20 - 32 mm. Quick release button allows rotation of the angle for the best poss...

View full details

Universal Rod Holder Claw

Original price €129,95 - Original price €129,95
Original price €129,95
€129,95
€129,95 - €129,95
Current price €129,95

Universal Rod Holder Claw This clamp is manufactured in such a way that it is not possible to crush the rod during assembly. Made of durable an...

View full details

Rod bracket 5198-059

Original price €145,95 - Original price €145,95
Original price €145,95
€145,95
€145,95 - €145,95
Current price €145,95

Rod bracket 5198-059 The pole mount fits poles with Ø 20 - 32 mm. Includes a slot for attaching an external battery Quick release button all...

View full details

Rod holder with 1 inch ball

Original price €123,95 - Original price €123,95
Original price
€123,95
€123,95 - €123,95
Current price €123,95

Rod holder with 1 inch ball The pole holder is made of durable anodized aluminum. Claw technology allows for maximum tightening of th...

View full details

Lumibell XL adapter for carbon fiber/aluminum rods 25mm

Original price €33,95 - Original price €33,95
Original price €33,95
€33,95
€33,95 - €33,95
Current price €33,95

Lumibell XL adapter fits all types of measuring rods on the market Adapter for carbon fiber rods and aluminum rods 25mm

Rod holder Seco universal with bubble level

Original price €134,95 - Original price €134,95
Original price
€134,95
€134,95 - €134,95
Current price €134,95

Pole mount Universal bracket that fits rods with Ø 20 - 32 mm. Includes a vial with sensitivity 40 ´ Quick release button allows rotation of th...

View full details

Rod bracket 5198-052

Original price €129,95 - Original price €129,95
Original price €129,95
€129,95
€129,95 - €129,95
Current price €129,95

Rod bracket 5198-052 Fits both round and triangular measuring rods. Quick release button allows rotation of the angle for the best possible pos...

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