How to set up Honeypot protection for Code Form

The Honeypot protection function automatically blocks form submission when spam or bot activity is detected. How to install the Honeypot protection function.

What is "Honeypot Protection Feature"?

The "Honeypot Protection Feature" is a security mechanism designed to protect portal sites from form submissions by spam and BOTs.

When spam or Bot activity is detected, the form submission is automatically blocked.

Visibility to Form Respondents

The "Honeypot Protection Feature" is set up invisibly to the form respondents, so there is no need to take any action when submitting the form.

How to Set Up

  1. Open "HTML Code Embedded Form" > "Code Placement" in the "Form Settings Page".
  2. Add the following tag to the HTML tag creation field.

  <!-- Tag to block bot submissions -->
  <div class="_formrun_gotcha">
    <style media="page">._formrun_gotcha {position:absolute!important;height:1px;width:1px;overflow:hidden;}</style>
    <label for="_formrun_gotcha">If you are a human, ignore this field</label>
    <input type="text" name="_formrun_gotcha" id="_formrun_gotcha" tabindex="-1">
  </div>