This is the stripe button – lets see what it does

<!-- Load Stripe.js on your website. --><!-- [et_pb_line_break_holder] --><script src="https://js.stripe.com/v3"></script><!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] --><!-- Create a button that your customers click to complete their purchase. Customize the styling to suit your branding. --><!-- [et_pb_line_break_holder] --><button<!-- [et_pb_line_break_holder] --> style="background-color:#6772E5;color:#FFF;padding:8px 12px;border:0;border-radius:4px;font-size:1em"<!-- [et_pb_line_break_holder] --> id="checkout-button-sku_H92aDTPTDhNWls"<!-- [et_pb_line_break_holder] --> role="link"<!-- [et_pb_line_break_holder] -->><!-- [et_pb_line_break_holder] --> Checkout<!-- [et_pb_line_break_holder] --></button><!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] --><div id="error-message"></div><!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] --><script><!-- [et_pb_line_break_holder] -->(function() {<!-- [et_pb_line_break_holder] --> var stripe = Stripe('pk_live_eZzbhjHdbORuBN8AkX3Y8KjX006Qfg09np');<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] --> var checkoutButton = document.getElementById('checkout-button-sku_H92aDTPTDhNWls');<!-- [et_pb_line_break_holder] --> checkoutButton.addEventListener('click', function () {<!-- [et_pb_line_break_holder] --> // When the customer clicks on the button, redirect<!-- [et_pb_line_break_holder] --> // them to Checkout.<!-- [et_pb_line_break_holder] --> stripe.redirectToCheckout({<!-- [et_pb_line_break_holder] --> items: [{sku: 'sku_H92aDTPTDhNWls', quantity: 1}],<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] --> // Do not rely on the redirect to the successUrl for fulfilling<!-- [et_pb_line_break_holder] --> // purchases, customers may not always reach the success_url after<!-- [et_pb_line_break_holder] --> // a successful payment.<!-- [et_pb_line_break_holder] --> // Instead use one of the strategies described in<!-- [et_pb_line_break_holder] --> // https://stripe.com/docs/payments/checkout/fulfillment<!-- [et_pb_line_break_holder] --> successUrl: window.location.protocol + '//www.zoladubnikova.com/',<!-- [et_pb_line_break_holder] --> cancelUrl: window.location.protocol + '//www.zoladubnikova.com/',<!-- [et_pb_line_break_holder] --> })<!-- [et_pb_line_break_holder] --> .then(function (result) {<!-- [et_pb_line_break_holder] --> if (result.error) {<!-- [et_pb_line_break_holder] --> // If `redirectToCheckout` fails due to a browser or network<!-- [et_pb_line_break_holder] --> // error, display the localized error message to your customer.<!-- [et_pb_line_break_holder] --> var displayError = document.getElementById('error-message');<!-- [et_pb_line_break_holder] --> displayError.textContent = result.error.message;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> });<!-- [et_pb_line_break_holder] --> });<!-- [et_pb_line_break_holder] -->})();<!-- [et_pb_line_break_holder] --></script>

Join Zola’s newsletter

To receive updates about workshops, retreats and courses

We respect your privacy and wont share your information.