Turn off on one form
add_filter( ‘frm_run_honeypot’, ‘frm_disable_honeypot’ ); function frm_disable_honeypot( $enabled, $atts ) { if ( $atts[‘form’]->id === 5 ) { //change 5 to the ID of your form $enabled = false; } return $enabled; }Continue reading