Selfie Stick / 360 Camera Tubing Mount

Part# MODSS

$79.95

Lock it down and light it up! This mount turns any bar into your personal film crew. It keeps your 360° or action cam steady, stylish, and ready to capture every wild, dusty, full-throttle moment.

Clamps 2.25" or larger +$10 ea.
No clamps -$15 ea.
EAN: 814628024665 SKU: MODSS Categories: ,
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(); });