Add custom code next to input fields in Contact Form7
-
All default Contact Form7 input fields are wrapped by SPAN just like this:
<span class="wpcf7-form-control-wrap your-email"> <input type="email" name="your-email" value="" size="40" class="wpcf7-form-control wpcf7-text wpcf7-email wpcf7-validates-as-required wpcf7-validates-as-email" aria-required="true" aria-invalid="false"> </span>
I need to customize Contact Form7 input fields in the way that I can output any custom code just next to inputs inside this span. So it would look like this:
<span class="wpcf7-form-control-wrap your-email"> <input type="email" name="your-email" value="" size="40" class="wpcf7-form-control wpcf7-text wpcf7-email wpcf7-validates-as-required wpcf7-validates-as-email" aria-required="true" aria-invalid="false"> <div class="some-class"></div> <label>Email</label> </span>
How can i achieve that?
- The topic ‘Add custom code next to input fields in Contact Form7’ is closed to new replies.