document.addEventListener('DOMContentLoaded', function () { const selectShipping = () => { const shipButton = [...document.querySelectorAll('button, label')].find(el => el.textContent.trim() === 'Ship' ); if (shipButton) { shipButton.click(); } }; // Initial load setTimeout(selectShipping, 500); // Re-run when WooCommerce updates the checkout const observer = new MutationObserver(() => { selectShipping(); }); observer.observe(document.body, { childList: true, subtree: true }); });
You must be 21 years or older to enter this website.