Skip to content

Instantly share code, notes, and snippets.

@wdebusschere
Last active December 3, 2018 12:37
Show Gist options
  • Save wdebusschere/ac53b0e2aaf6dbeb83167f55386f6d88 to your computer and use it in GitHub Desktop.
Save wdebusschere/ac53b0e2aaf6dbeb83167f55386f6d88 to your computer and use it in GitHub Desktop.

html

<label class="uk-hidden">Leave this field empty:</label>
<input class="uk-hidden" type="text" name="phoneNumber6tY4bPYk" autocomplete="off" />```


# css

.uk-hidden { display: none !important; }



# custom event save-contactform

public function load() {

    if (isset($_POST['action']['save-contactform']) ) {
         $honeyPot = $_POST['phoneNumber6tY4bPYk'];
        if ((trim($honeyPot) == ''))
        {
	        return $this->__trigger();
        }
        
    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment