Hi Laura,
There are three different effects that happen when a form is submitted. (1) The form’s opacity is reduced so it appears ‘grayed out’, (2) a ‘spinning gif’ is placed on top of the form, and (3) a ‘loading dots’ gif replaces the submit button text.
Are you trying to remove one of these effects?
There’s no way to change the form’s opacity (1).
To change (2), the ‘spinning gif’, you can use the filter yikes-mailchimp-preloader
. Here is an example of how to remove it:
// Remove spinning gif (form gif)
add_filter( 'yikes-mailchimp-preloader', '__return_false' );
To change (3), the ‘loading dots gif’, you are supposed to be able to use the filter yikes-mailchimp-loading-dots
in the same way as the yikes-mailchimp-preloader
filter. However, I just tested it and it appears to be loading a blank/broken image instead of removing it. Let me know if this is what you’re trying to remove and I can fix this.
You can also hide the gifs (2) and (3) using CSS if you’re more comfortable with that. Let me know if you’d like me to explain that.
Cheers,
Kevin.