Remove all Likert fields from the tags box
add_filter( ‘frm_fields_in_tags_box’, ‘remove_likert_tags_box’, 10, 2); function remove_likert_tags_box( $fields, $args ) { if ( 13 != $args[‘form_id’] ) { return $fields; // Do not modify fields if this is not the form you want. } // Remove all Likert fields. foreach…Continue reading