Answer the question
In order to leave comments, you need to log in
Which Wordpress Contact Form Plugin Do You Recommend?
what are some simple and flexible plug-ins for creating a feedback form in which, if a problem arises, you don’t have to rack your brains for days, how to solve it?
Answer the question
In order to leave comments, you need to log in
I always use Contact Form 7.
And as practice shows, if there are problems with submitting the form, it’s not because of the plugin, but because of the wrong topic, the wrong hosting settings, due to blocking the port, due to an incorrectly configured SSL certificate etc.
Contact form 7. If it infuriates that it wraps the form in a bunch of extra code, then you can use it in functions
add_filter('wpcf7_form_elements', function($content) {
$content = preg_replace('/<(span).*?class="\s*(?:.*\s)?wpcf7-form-control-wrap(?:\s[^"]+)?\s*"[^\>]*>(.*)<\/\1>/i', '\2', $content);
return $content;
});
add_filter('wpcf7_autop_or_not', '__return_false');
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question