Question Detail

How can I remove the span wrapper in Contact Form 7?

4 years ago Views 3405 Visit Post Reply


Thread Reply

Lokesh Gupta

- 4 years ago

I have added a code in function.php

 

/*Contact form 7 remove span*/
add_filter('wpcf7_form_elements', function($content) {
    $content = preg_replace('/<(span).*?class="\s*(?:.*\s)?wpcf7-form-control-wrap(?:\s[^"]+)?\s*"[^\>]*>(.*)<\/\1>/i', '\2', $content);

    $content = str_replace('<br />', '', $content);
        
    return $content;
});