Medical Recreational (function () { const sel = document.getElementById(‘store_selector_dropdown’); if (!sel) return; sel.addEventListener(‘change’, () => { const opt = sel.options[sel.selectedIndex]; if (!opt.dataset.store) return; const params = new URLSearchParams(); params.set(‘store’, opt.dataset.store); params.set(‘wp_store_id’, opt.dataset.wpStoreId); params.set(‘store_updated’, ‘true’); const homeUrl = ‘https://everydayweed.shop/’; window.location.href = homeUrl + ‘?’ + params.toString(); }); })();