By Neil on April 28, 2015
If you do not know what Gravity Forms is you can visit their website here.
This video shows how to hide the honeypot anti-spam field and validation description when you enable this feature in Gravity Forms. Really it should be hidden by default but if it is not (like it was not for me) you can add a little bit of CSS styling to your style.css stylesheet to hide the field and description.
My Gravity Form has an ID of 7 and the code below is how I hide the honeypot anti-spam fields. Watch the video to see how I found out the ID of the field to hide.
MY CODE USED:
body .gform_wrapper .gform_body .gform_fields #field_7_9.gfield input[type=text]
{
display: none;
}
body .gform_wrapper .gform_body .gform_fields #field_7_9.gfield .gfield_description
{
display: none;
}
Or you can simply write CSS to target all honeypots:
.gform_validation_container {
display:none !important;
}