Register for ET Groups
Register for ET Groups
from $20.00 every month
To support our work, please contribute the highest amount you can afford comfortably.
Sliding Scale:
// Prevent redirect to checkout and keep users on the workshops page document.addEventListener('DOMContentLoaded', function () { const addToCartButtons = document.querySelectorAll('.sqs-add-to-cart-button'); addToCartButtons.forEach(button => { button.addEventListener('click', function (event) { event.preventDefault(); // Prevent auto-redirect // Add custom logic to display the cart count (optional) // Update cart count in header or page dynamically }); }); });