Hiding the "Return to the Form" Button that appears after submission on the confirmation screen

Hi Community,

Is there a way of hiding the "Return to the Form" button that appears after submission on the confirmation screen please?

Many thanks

Nigel

Hello @Nigel_Foot,

Normally, the button is hidden when 'Hide form after submission' is on and 'Timeout before the next submission' has a value. But it looks like there is a bug on our side and the 'Return to the form' button remains visible. We will fix this.

While we are working on a fix, you can hide the button with CSS:

div.container:has(div.success-animation) > button{
    display: none!important;
}

Thank you @Margo . Is it also possible to hide the whole "Thank you" screen?

@Nigel_Foot,

It will be confusing for users if they see an empty screen after submission.

For instance, you can change the thank-you message in the form settings:

Hi Margo,

I have no hidden the form after submission and redirected after submission to a custom html page. Thanks for you help, all sorted. Also hope the bug gets fixed with hiding the button as well. Thanks again

Nigel

1 Like