Adjustable Phone Mount – 3M Adhesive Mount

Part# APM

$89.95

Clamps 2.25" or larger +$10 ea.
No clamps -$15 ea.
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(); });