('Proceed to Square Checkout');
// Bind the click event to redirect to your Square Link
$squareBtn.on('click', function(e) {
e.preventDefault();
e.stopPropagation();
window.location.href = squareCartCheckoutUrl;
});
// Swap out the default button
$nativeCheckoutBtn.replaceWith($squareBtn);
}
}
// Run immediately on page load
hijackSquarespaceCart();
// Watch the page for dynamic AJAX updates (like when item quantities are added/removed)
var observer = new MutationObserver(function(mutations) {
hijackSquarespaceCart();
});
if (document.getElementById('sqs-page-content') || document.body) {
observer.observe(document.body, { childList: true, subtree: true });
}
});