What is the best way to keep a button hidden until a third-party booking form is completed, and then display the button once the form submission is finished
Code is the best way to achieve this - although you’ll need some sort of trigger from the third-party form.
It’s difficult to provide a solution without knowing what that trigger is, but in short:
- Set the button to hidden within the editor
- Then add code:
$w.onReady(function () { // You'll need to wrap this in the trigger $w("#myButton").show() });
The above code won’t work until you’ve identified how to listen to the trigger
