So I m working on a WordPress site I made a form using the formidable plugin. I want the form submitted success message automatically removes after 10 seconds. how to remove form submit message after 10 seconds automatically in the WordPress site.
So I m working on a WordPress site I made a form using the formidable plugin. I want the form submitted success message automatically removes after 10 seconds. how to remove form submit message after 10 seconds automatically in the WordPress site.
2
Answers
Don’t know about that plugin but a few lines of JS should do the trick.
Let’s say the element that wraps your success message has a class called
notice-container
and the form element has the idform21
Place this code anywhere on your page and you’re good to go.
P.S: Don’t forget to replace the
notice-container
andform21
values accordingly to your formHere is the official document of the Formidable form. https://formidableforms.com/knowledgebase/javascript-examples/javascript-after-form-submit/
You can try something below: