How to show a message after submitting a form (form made using plugin)
Using the function wp_redirect() may fail due to the timing of its usage and the already sent headers on your form page. I recommend using jQuery and AJAX for handling form submissions. This first approach allows the response to be displayed on the same page as the form, avoiding conflicts with the original page headers. … Read more