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
Copy file name to clipboardExpand all lines: includes/admin/class-admin-notices.php
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -164,9 +164,9 @@ private function register_fulltext_index_notice() {
164
164
'id' => 'bsearch_missing_fulltext_index',
165
165
'message' => sprintf(
166
166
'<p>%s <a href="%s">%s</a></p>',
167
-
esc_html__( 'Better Search: Some fulltext indexes are missing, which will affect search results.', 'better-search' ),
167
+
esc_html__( 'Better Search: Some FULLTEXT indexes are missing from your database, which will prevent search results from being found. Please run the recreate indexes tool from the Tools page to restore search functionality.', 'better-search' ),
esc_html__( 'Click here to recreate indexes.', 'better-search' )
169
+
esc_html__( 'Go to Tools page', 'better-search' )
170
170
),
171
171
'type' => 'warning',
172
172
'dismissible' => true,
@@ -203,9 +203,9 @@ private function register_missing_table_notice() {
203
203
'id' => 'bsearch_missing_tables',
204
204
'message' => sprintf(
205
205
'<p>%s <a href="%s">%s</a></p>',
206
-
esc_html__( 'Better Search: Some tables are missing, which will affect search results.', 'better-search' ),
206
+
esc_html__( 'Better Search: Some tables are missing, which will affect search results performance. Visit the Tools page to manually recreate the tables.', 'better-search' ),
0 commit comments