Hello Everyone, Complete newbie here. Could anybody tell me how to modify the Paypal button HTML to auto return to a custom url? I'm using the standard button for a single product. I want to tweak the code so the customer autoreturns to a url I specify. I want to direct them to a specific Calendly booking event url after receiving their payment. My guess is that it goes in this section but I neither know how to have it auto return, nor send them to a specified url. // Show a success message within this page, e.g. const element = document.getElementById('paypal-button-container'); element.innerHTML = ''; element.innerHTML = '<h3>Thank you for your payment!</h3>'; // Or go to another URL: actions.redirect('thank_you.html'); I'm as clueless & new as I probably sound, so please don't assume any HTML knowledge, just English literacy;-) Thanks in advance, Tim
... View more