_nicename = __( 'Credit Card Expiration', 'ninja-forms' ); add_filter( 'nf_sub_hidden_field_types', array( $this, 'hide_field_type' ) ); $this->_settings[ 'mask' ] = array( 'name' => 'mask', 'value' => '99/9999', ); } function hide_field_type( $field_types ) { $field_types[] = $this->_name; return $field_types; } }