You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$message = __( 'The previous recommended threshold for descriptive text generation was 75% but we find better results now at around 55%.', 'classifai' );
183
+
break;
184
+
}
185
+
186
+
// Don't show the notice if the user has already dismissed it.
187
+
if ( get_user_meta( get_current_user_id(), "classifai_dismissed_{$key}", true ) ) {
188
+
continue;
189
+
}
190
+
191
+
// Don't show the notice if the threshold is already at 55% or lower.
'description' => esc_html__( 'Minimum confidence score for automatically added generated text, numeric value from 0-100. Recommended to be set to at least 75.', 'classifai' ),
116
+
'description' => esc_html__( 'Minimum confidence score for automatically added generated text, numeric value from 0-100. Recommended to be set to at least 55.', 'classifai' ),
117
117
'class' => 'classifai-provider-field hidden provider-scope-' . static::ID, // Important to add this.
118
118
]
119
119
);
@@ -162,7 +162,7 @@ public function get_default_provider_settings(): array {
0 commit comments