4.0″ Extension for Device Mounting Arm

Part# MODDA4

$29.95

Everyone needs to bring those devices a little closer from time to time. This 4″ extension is perfect to add to our Device Mounting Arm Kit for just those situations. Quick easy add with same adjustability and lock out features.

Clamps 2.25" or larger +$10 ea.
No clamps -$15 ea.
EAN: 814628022388 SKU: MODDA4 Categories: , Tags: ,
jQuery(function ($) { let autoSelecting = false; function getCheckedMethod() { return $('#shipping_method input.shipping_method:checked').val() || ''; } function userHasChosen() { return sessionStorage.getItem('axia_user_chose_shipping') === '1'; } function chooseDefaultShipping() { const $methods = $('#shipping_method input.shipping_method'); if (!$methods.length) return; // If user already changed it this session, don't override if (userHasChosen()) return; const current = getCheckedMethod(); // If current is already a non-pickup option, leave it alone if (current && current.indexOf('local_pickup') !== 0) return; // Pick the first non-local_pickup method (your list is already sorted cheapest-first) const $preferred = $methods.filter(function () { return (this.value || '').indexOf('local_pickup') !== 0; }).first(); if ($preferred.length) { autoSelecting = true; $preferred.prop('checked', true).trigger('change'); autoSelecting = false; } } // Mark “user manually chose shipping” (but ignore our own auto-select) $(document.body).on('change', '#shipping_method input.shipping_method', function () { if (!autoSelecting) { sessionStorage.setItem('axia_user_chose_shipping', '1'); } }); // Run on load + whenever Woo updates checkout $(document.body).on('updated_checkout', chooseDefaultShipping); chooseDefaultShipping(); });