simple captcha
To use simple captcha for wordpress contact form 7 forms .. instead of google default “I am not robot” photos validation.
Picture validation looks little long to validate any form.. so here is the solution for who want to apply simple validation like input fields..
Steps to follow :
1) First of all install this plugin Really Simple CAPTCHA.
2) Copy this code structure and edit your contact form and paste near the submit button ..you can change name if you want.
<div class="securt"><label> Enter Security code:</label> [captchac captcha-nst size:l] [captchar captcha-nst 4/4]</div>
3) Now let’s do some style i did with my form code and added to style.css file ..you can adjust as per your primary color.
.wpcf7-form-control.wpcf7-captchar {
width: 100%;
margin-left: 20px;
max-width: 240px;
}
.securt label {
display: block;
margin-bottom: 10px;
color: #F64F57;
}
4) Now save and check the form on page.. your output will be like this.
Thanks a bunch!