Hi @andriig,
Unfortunately we do not have a way of not showing the success message. However, if you’d like, we could try a hacky-workaround type approach.
For example, if you set the success message(s) text to be
, nothing will show in the green success box. Furthermore, you could add some CSS so that the box blends in with the background. In my environment, my form is on a white background and so I could hide it like so:
.yikes-easy-mc-success-message-7 {
background-color: white;
}
Note that you might need to add the !important
flag to your declaration (e.g. background-color: white !important;
, and that your selector should be .yikes-easy-mc-success-message-{Form #}
or, if you want to hide every form’s success message, simply .yikes-easy-mc-success-message
.
Sorry that there is no option to toggle this. Let me know if you need any help with the workaround.
Cheers,
Kevin.