Add a case-sensitive like comparison
add_filter(‘frmpro_fields_replace_shortcodes’, ‘frm_check_for_case_sensitive_like_value’, 20, 4); function frm_check_for_case_sensitive_like_value( $replace_with, $tag, $atts, $field ){ if ( isset( $atts[‘case_sensitive_like’] ) && ! empty( $replace_with ) ) { if ( is_array( $replace_with ) ) { if ( ! in_array( $atts[‘case_sensitive_like’], $replace_with ) ) { $replace_with…Continue reading