Limit event registration
add_filter( ‘frm_validate_entry’, ‘event_registration’, 20, 2 ); function event_registration( $errors, $values ) { if ( $values[‘form_id’] !== 304 ) {//Change 304 to the ID of your form return $errors; } $registration_field = 3080;// Set this field to the id of the…Continue reading