Hi, Mina, I’m another CF7 user.
That text is coming from your theme.
Is there a theme setting that you can play around with to remove that?
Try this CSS to temporarily fix it:
span.wpcf7-form-control-wrap * + label {
visibility: hidden;
}
Thread Starter
Mina
(@karimcarol)
Hi Ian
Thank you very much for your fast response. it worked!
I’ve just copied and pasted the CSS code
Thanks again 🙂
HiI Mina , i am another CF7 user.
try this function to function.php file and fix it:
<?php
// Remove auto p from Contact Form 7 shortcode output
add_filter(‘wpcf7_autop_or_not’, ‘wpcf7_autop_return_false’);
function wpcf7_autop_return_false() {
return false;
}
Thanks