Ivory Search – WordPress Search Plugin - Version 4.5.9

Version Description

  • Fixed - Menu search options was not saving in older WP version than 5.5
Download this release

Release Info

Developer vinod dalvi
Plugin Icon 128x128 Ivory Search – WordPress Search Plugin
Version 4.5.9
Comparing to
See all releases

Code changes from version 4.5.8 to 4.5.9

add-search-to-menu.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Ivory Search
4
  * Plugin URI: https://ivorysearch.com
5
  * Description: The WordPress Search plugin that includes Search Form Customizer, WooCommerce Search, Image Search, Search Shortcode, AJAX Search & Live Search support!
6
- * Version: 4.5.8
7
  * Author: Ivory Search
8
  * Author URI: https://ivorysearch.com/
9
  * License: GPL2+
@@ -108,7 +108,7 @@ final class Ivory_Search {
108
  private function define_constants() {
109
 
110
  if ( ! defined( 'IS_VERSION' ) ) {
111
- define( 'IS_VERSION', '4.5.8' );
112
  }
113
  if ( ! defined( 'IS_PLUGIN_FILE' ) ) {
114
  define( 'IS_PLUGIN_FILE', __FILE__ );
3
  * Plugin Name: Ivory Search
4
  * Plugin URI: https://ivorysearch.com
5
  * Description: The WordPress Search plugin that includes Search Form Customizer, WooCommerce Search, Image Search, Search Shortcode, AJAX Search & Live Search support!
6
+ * Version: 4.5.9
7
  * Author: Ivory Search
8
  * Author URI: https://ivorysearch.com/
9
  * License: GPL2+
108
  private function define_constants() {
109
 
110
  if ( ! defined( 'IS_VERSION' ) ) {
111
+ define( 'IS_VERSION', '4.5.9' );
112
  }
113
  if ( ! defined( 'IS_PLUGIN_FILE' ) ) {
114
  define( 'IS_PLUGIN_FILE', __FILE__ );
admin/class-is-settings-fields.php CHANGED
@@ -129,16 +129,22 @@ class IS_Settings_Fields
129
  */
130
  function register_settings_fields()
131
  {
 
132
  if ( !empty($GLOBALS['pagenow']) && 'options.php' === $GLOBALS['pagenow'] ) {
 
 
 
 
 
133
 
134
  if ( isset( $_POST['is_menu_search'] ) ) {
135
- add_filter( 'allowed_options', function ( $allowed_options ) {
136
  $allowed_options['ivory_search'][0] = 'is_menu_search';
137
  return $allowed_options;
138
  } );
139
  } else {
140
  if ( isset( $_POST['is_analytics'] ) ) {
141
- add_filter( 'allowed_options', function ( $allowed_options ) {
142
  $allowed_options['ivory_search'][0] = 'is_analytics';
143
  return $allowed_options;
144
  } );
@@ -147,6 +153,7 @@ class IS_Settings_Fields
147
 
148
  }
149
 
 
150
  if ( !isset( $_GET['tab'] ) || 'settings' === $_GET['tab'] ) {
151
  add_settings_section(
152
  'ivory_search_settings',
129
  */
130
  function register_settings_fields()
131
  {
132
+
133
  if ( !empty($GLOBALS['pagenow']) && 'options.php' === $GLOBALS['pagenow'] ) {
134
+ global $wp_version ;
135
+ $temp_oname = 'whitelist_options';
136
+ if ( version_compare( $wp_version, '5.5', '>=' ) ) {
137
+ $temp_oname = 'allowed_options';
138
+ }
139
 
140
  if ( isset( $_POST['is_menu_search'] ) ) {
141
+ add_filter( $temp_oname, function ( $allowed_options ) {
142
  $allowed_options['ivory_search'][0] = 'is_menu_search';
143
  return $allowed_options;
144
  } );
145
  } else {
146
  if ( isset( $_POST['is_analytics'] ) ) {
147
+ add_filter( $temp_oname, function ( $allowed_options ) {
148
  $allowed_options['ivory_search'][0] = 'is_analytics';
149
  return $allowed_options;
150
  } );
153
 
154
  }
155
 
156
+
157
  if ( !isset( $_GET['tab'] ) || 'settings' === $_GET['tab'] ) {
158
  add_settings_section(
159
  'ivory_search_settings',
languages/add-search-to-menu.pot CHANGED
@@ -2,7 +2,7 @@
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: Ivory Search\n"
5
- "POT-Creation-Date: 2020-09-24 19:26+0530\n"
6
  "PO-Revision-Date: 2020-03-17 21:05+0530\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Ivory Search <admin@ivorysearch.com>\n"
@@ -21,7 +21,7 @@ msgstr ""
21
  msgid "The changes you made will be lost if you navigate away from this page."
22
  msgstr ""
23
 
24
- #: ../admin/class-is-admin.php:138 ../admin/class-is-settings-fields.php:357
25
  #: ../admin/partials/search-form.php:23
26
  msgid "Edit Search Form"
27
  msgstr ""
@@ -991,8 +991,8 @@ msgid ""
991
  msgstr ""
992
 
993
  #: ../admin/class-is-help.php:79 ../admin/class-is-list-table.php:154
994
- #: ../admin/class-is-settings-fields.php:441
995
- #: ../admin/class-is-settings-fields.php:471
996
  #: ../includes/class-is-search-form.php:559 ../includes/class-is-widget.php:83
997
  msgid "Edit"
998
  msgstr ""
@@ -1143,316 +1143,316 @@ msgstr ""
1143
  msgid "d/m/Y"
1144
  msgstr ""
1145
 
1146
- #: ../admin/class-is-settings-fields.php:139
1147
  msgid "Custom CSS"
1148
  msgstr ""
1149
 
1150
- #: ../admin/class-is-settings-fields.php:140
1151
  msgid "Stopwords"
1152
  msgstr ""
1153
 
1154
- #: ../admin/class-is-settings-fields.php:141
1155
  msgid "Synonyms"
1156
  msgstr ""
1157
 
1158
- #: ../admin/class-is-settings-fields.php:142
1159
  msgid "Header Search"
1160
  msgstr ""
1161
 
1162
- #: ../admin/class-is-settings-fields.php:143
1163
  msgid "Footer Search"
1164
  msgstr ""
1165
 
1166
- #: ../admin/class-is-settings-fields.php:144
1167
  msgid "Mobile Search"
1168
  msgstr ""
1169
 
1170
- #: ../admin/class-is-settings-fields.php:145
1171
  msgid "Plugin Files"
1172
  msgstr ""
1173
 
1174
- #: ../admin/class-is-settings-fields.php:146
1175
  msgid "Advanced"
1176
  msgstr ""
1177
 
1178
- #: ../admin/class-is-settings-fields.php:154
1179
  msgid "Menu Search Settings"
1180
  msgstr ""
1181
 
1182
- #: ../admin/class-is-settings-fields.php:161
1183
- #: ../admin/class-is-settings-fields.php:182
1184
  msgid "Search Analytics"
1185
  msgstr ""
1186
 
1187
- #: ../admin/class-is-settings-fields.php:172
1188
  msgid "Configure Menu Search"
1189
  msgstr ""
1190
 
1191
- #: ../admin/class-is-settings-fields.php:192
1192
  msgid "Advanced Website Search Settings"
1193
  msgstr ""
1194
 
1195
- #: ../admin/class-is-settings-fields.php:204
1196
  msgid "Display search form on selected menu locations."
1197
  msgstr ""
1198
 
1199
- #: ../admin/class-is-settings-fields.php:220
1200
  #, php-format
1201
  msgid "No menu assigned to navigation menu location in the %sMenus screen%s."
1202
  msgstr ""
1203
 
1204
- #: ../admin/class-is-settings-fields.php:223
1205
  msgid "Navigation menu location is not registered on the site."
1206
  msgstr ""
1207
 
1208
- #: ../admin/class-is-settings-fields.php:232
1209
  msgid "Display search form on selected menus."
1210
  msgstr ""
1211
 
1212
- #: ../admin/class-is-settings-fields.php:247
1213
  #, php-format
1214
  msgid "No menu created in the %sMenus screen%s."
1215
  msgstr ""
1216
 
1217
- #: ../admin/class-is-settings-fields.php:268
1218
  msgid "Display search form at the start of the navigation menu"
1219
  msgstr ""
1220
 
1221
- #: ../admin/class-is-settings-fields.php:274
1222
  msgid "Select menu search form style."
1223
  msgstr ""
1224
 
1225
- #: ../admin/class-is-settings-fields.php:278
1226
  msgid "Default"
1227
  msgstr ""
1228
 
1229
- #: ../admin/class-is-settings-fields.php:279
1230
  msgid "Dropdown"
1231
  msgstr ""
1232
 
1233
- #: ../admin/class-is-settings-fields.php:280
1234
  msgid "Sliding"
1235
  msgstr ""
1236
 
1237
- #: ../admin/class-is-settings-fields.php:281
1238
  msgid "Full Width"
1239
  msgstr ""
1240
 
1241
- #: ../admin/class-is-settings-fields.php:282
1242
  msgid "Popup"
1243
  msgstr ""
1244
 
1245
- #: ../admin/class-is-settings-fields.php:309
1246
  msgid "Select menu magnifier icon color."
1247
  msgstr ""
1248
 
1249
- #: ../admin/class-is-settings-fields.php:322
1250
  msgid "Display search form close icon"
1251
  msgstr ""
1252
 
1253
- #: ../admin/class-is-settings-fields.php:329
1254
  msgid "Add menu title to display in place of search icon."
1255
  msgstr ""
1256
 
1257
- #: ../admin/class-is-settings-fields.php:339
1258
  msgid "Select search form that will control menu search functionality."
1259
  msgstr ""
1260
 
1261
- #: ../admin/class-is-settings-fields.php:350
1262
- #: ../admin/class-is-settings-fields.php:433
1263
- #: ../admin/class-is-settings-fields.php:465
1264
  msgid "None"
1265
  msgstr ""
1266
 
1267
- #: ../admin/class-is-settings-fields.php:359
1268
- #: ../admin/class-is-settings-fields.php:443
1269
- #: ../admin/class-is-settings-fields.php:473 ../includes/class-is-widget.php:85
1270
  msgid "Create New"
1271
  msgstr ""
1272
 
1273
- #: ../admin/class-is-settings-fields.php:367
1274
  msgid "Add class to search form menu item."
1275
  msgstr ""
1276
 
1277
- #: ../admin/class-is-settings-fields.php:373
1278
  msgid "Add multiple classes seperated by space."
1279
  msgstr ""
1280
 
1281
- #: ../admin/class-is-settings-fields.php:379
1282
  msgid ""
1283
  "Add Google Custom Search( CSE ) search form code that will replace default "
1284
  "search form."
1285
  msgstr ""
1286
 
1287
- #: ../admin/class-is-settings-fields.php:397
1288
  msgid "Enabled"
1289
  msgstr ""
1290
 
1291
- #: ../admin/class-is-settings-fields.php:398
1292
  msgid "Disabled"
1293
  msgstr ""
1294
 
1295
- #: ../admin/class-is-settings-fields.php:399
1296
  msgid "Google Analytics tracking for searches"
1297
  msgstr ""
1298
 
1299
- #: ../admin/class-is-settings-fields.php:400
1300
  msgid "Search Analytics uses Google Analytics to track searches."
1301
  msgstr ""
1302
 
1303
- #: ../admin/class-is-settings-fields.php:401
1304
  #, php-format
1305
  msgid "You need %s Google Analytics %s to be installed on your site."
1306
  msgstr ""
1307
 
1308
- #: ../admin/class-is-settings-fields.php:402
1309
  msgid ""
1310
  "Data will be visible inside Google Analytics 'Events' and 'Site Search' "
1311
  "report."
1312
  msgstr ""
1313
 
1314
- #: ../admin/class-is-settings-fields.php:403
1315
  msgid "Events will be as below:"
1316
  msgstr ""
1317
 
1318
- #: ../admin/class-is-settings-fields.php:404
1319
  msgid "Category - Results Found / Nothing Found"
1320
  msgstr ""
1321
 
1322
- #: ../admin/class-is-settings-fields.php:405
1323
  msgid "Action - Ivory Search - ID"
1324
  msgstr ""
1325
 
1326
- #: ../admin/class-is-settings-fields.php:406
1327
  msgid "Label - Value of search term"
1328
  msgstr ""
1329
 
1330
- #: ../admin/class-is-settings-fields.php:407
1331
  #, php-format
1332
  msgid ""
1333
  "Need to %s activate Site Search feature %s inside Google Analytics to "
1334
  "display data inside 'Site Search' report."
1335
  msgstr ""
1336
 
1337
- #: ../admin/class-is-settings-fields.php:408
1338
  msgid ""
1339
  "Enable Site search Tracking option in Site Search Settings and set its "
1340
  "parameters as below."
1341
  msgstr ""
1342
 
1343
- #: ../admin/class-is-settings-fields.php:409
1344
  msgid "Query parameter - s"
1345
  msgstr ""
1346
 
1347
- #: ../admin/class-is-settings-fields.php:410
1348
  msgid "Category parameter - id / result"
1349
  msgstr ""
1350
 
1351
- #: ../admin/class-is-settings-fields.php:421
1352
  msgid "Select search form to display in site header( Not Menu )."
1353
  msgstr ""
1354
 
1355
- #: ../admin/class-is-settings-fields.php:446
1356
  msgid ""
1357
  "Please note that the above option displays search form in site header and "
1358
  "not in navigation menu."
1359
  msgstr ""
1360
 
1361
- #: ../admin/class-is-settings-fields.php:454
1362
  msgid "Select search form to display in site footer."
1363
  msgstr ""
1364
 
1365
- #: ../admin/class-is-settings-fields.php:489
1366
  msgid "Display search form in site header on mobile devices"
1367
  msgstr ""
1368
 
1369
- #: ../admin/class-is-settings-fields.php:492
1370
  msgid ""
1371
  "If this site uses cache then please select the below option to display "
1372
  "search form on mobile."
1373
  msgstr ""
1374
 
1375
- #: ../admin/class-is-settings-fields.php:499
1376
  msgid "This site uses cache"
1377
  msgstr ""
1378
 
1379
- #: ../admin/class-is-settings-fields.php:508
1380
  msgid "Add custom CSS code."
1381
  msgstr ""
1382
 
1383
- #: ../admin/class-is-settings-fields.php:521
1384
  msgid "Add Stopwords that will not be searched."
1385
  msgstr ""
1386
 
1387
- #: ../admin/class-is-settings-fields.php:526
1388
  msgid "Please separate multiple words with commas."
1389
  msgstr ""
1390
 
1391
- #: ../admin/class-is-settings-fields.php:535
1392
  msgid "Add synonyms to make the searches find better results."
1393
  msgstr ""
1394
 
1395
- #: ../admin/class-is-settings-fields.php:537
1396
  msgid ""
1397
  "If you add bird = crow to the list of synonyms, searches for bird "
1398
  "automatically become a search for bird crow and will thus match to posts "
1399
  "that include either bird or crow."
1400
  msgstr ""
1401
 
1402
- #: ../admin/class-is-settings-fields.php:542
1403
  msgid "The format here is key = value"
1404
  msgstr ""
1405
 
1406
- #: ../admin/class-is-settings-fields.php:543
1407
  msgid "Please add every synonyms key = value pairs on new line."
1408
  msgstr ""
1409
 
1410
- #: ../admin/class-is-settings-fields.php:545
1411
  msgid ""
1412
  "This only works for search forms configured to search any of the search "
1413
  "terms(OR) and not all search terms(AND) in the search form Options."
1414
  msgstr ""
1415
 
1416
- #: ../admin/class-is-settings-fields.php:554
1417
  msgid ""
1418
  "Enable below options to disable loading of plugin CSS and JavaScript files."
1419
  msgstr ""
1420
 
1421
- #: ../admin/class-is-settings-fields.php:558
1422
  msgid "Do not load plugin CSS files"
1423
  msgstr ""
1424
 
1425
- #: ../admin/class-is-settings-fields.php:559
1426
  msgid "Do not load plugin JavaScript files"
1427
  msgstr ""
1428
 
1429
- #: ../admin/class-is-settings-fields.php:575
1430
  msgid ""
1431
  "If checked, you have to add following plugin file code into your child theme "
1432
  "CSS file."
1433
  msgstr ""
1434
 
1435
- #: ../admin/class-is-settings-fields.php:580
1436
  msgid ""
1437
  "If checked, you have to add following plugin files code into your child "
1438
  "theme JavaScript file."
1439
  msgstr ""
1440
 
1441
- #: ../admin/class-is-settings-fields.php:597
1442
  msgid "Warning: Use with caution."
1443
  msgstr ""
1444
 
1445
- #: ../admin/class-is-settings-fields.php:602
1446
  msgid ""
1447
  "Do not use Default Search Form to control WordPress default search "
1448
  "functionality"
1449
  msgstr ""
1450
 
1451
- #: ../admin/class-is-settings-fields.php:611
1452
  msgid "Disable search functionality on entire website"
1453
  msgstr ""
1454
 
1455
- #: ../admin/class-is-settings-fields.php:621
1456
  msgid ""
1457
  "Display easy edit links of search form on the website frontend to the admin "
1458
  "users"
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: Ivory Search\n"
5
+ "POT-Creation-Date: 2020-10-01 13:19+0530\n"
6
  "PO-Revision-Date: 2020-03-17 21:05+0530\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Ivory Search <admin@ivorysearch.com>\n"
21
  msgid "The changes you made will be lost if you navigate away from this page."
22
  msgstr ""
23
 
24
+ #: ../admin/class-is-admin.php:138 ../admin/class-is-settings-fields.php:362
25
  #: ../admin/partials/search-form.php:23
26
  msgid "Edit Search Form"
27
  msgstr ""
991
  msgstr ""
992
 
993
  #: ../admin/class-is-help.php:79 ../admin/class-is-list-table.php:154
994
+ #: ../admin/class-is-settings-fields.php:446
995
+ #: ../admin/class-is-settings-fields.php:476
996
  #: ../includes/class-is-search-form.php:559 ../includes/class-is-widget.php:83
997
  msgid "Edit"
998
  msgstr ""
1143
  msgid "d/m/Y"
1144
  msgstr ""
1145
 
1146
+ #: ../admin/class-is-settings-fields.php:144
1147
  msgid "Custom CSS"
1148
  msgstr ""
1149
 
1150
+ #: ../admin/class-is-settings-fields.php:145
1151
  msgid "Stopwords"
1152
  msgstr ""
1153
 
1154
+ #: ../admin/class-is-settings-fields.php:146
1155
  msgid "Synonyms"
1156
  msgstr ""
1157
 
1158
+ #: ../admin/class-is-settings-fields.php:147
1159
  msgid "Header Search"
1160
  msgstr ""
1161
 
1162
+ #: ../admin/class-is-settings-fields.php:148
1163
  msgid "Footer Search"
1164
  msgstr ""
1165
 
1166
+ #: ../admin/class-is-settings-fields.php:149
1167
  msgid "Mobile Search"
1168
  msgstr ""
1169
 
1170
+ #: ../admin/class-is-settings-fields.php:150
1171
  msgid "Plugin Files"
1172
  msgstr ""
1173
 
1174
+ #: ../admin/class-is-settings-fields.php:151
1175
  msgid "Advanced"
1176
  msgstr ""
1177
 
1178
+ #: ../admin/class-is-settings-fields.php:159
1179
  msgid "Menu Search Settings"
1180
  msgstr ""
1181
 
1182
+ #: ../admin/class-is-settings-fields.php:166
1183
+ #: ../admin/class-is-settings-fields.php:187
1184
  msgid "Search Analytics"
1185
  msgstr ""
1186
 
1187
+ #: ../admin/class-is-settings-fields.php:177
1188
  msgid "Configure Menu Search"
1189
  msgstr ""
1190
 
1191
+ #: ../admin/class-is-settings-fields.php:197
1192
  msgid "Advanced Website Search Settings"
1193
  msgstr ""
1194
 
1195
+ #: ../admin/class-is-settings-fields.php:209
1196
  msgid "Display search form on selected menu locations."
1197
  msgstr ""
1198
 
1199
+ #: ../admin/class-is-settings-fields.php:225
1200
  #, php-format
1201
  msgid "No menu assigned to navigation menu location in the %sMenus screen%s."
1202
  msgstr ""
1203
 
1204
+ #: ../admin/class-is-settings-fields.php:228
1205
  msgid "Navigation menu location is not registered on the site."
1206
  msgstr ""
1207
 
1208
+ #: ../admin/class-is-settings-fields.php:237
1209
  msgid "Display search form on selected menus."
1210
  msgstr ""
1211
 
1212
+ #: ../admin/class-is-settings-fields.php:252
1213
  #, php-format
1214
  msgid "No menu created in the %sMenus screen%s."
1215
  msgstr ""
1216
 
1217
+ #: ../admin/class-is-settings-fields.php:273
1218
  msgid "Display search form at the start of the navigation menu"
1219
  msgstr ""
1220
 
1221
+ #: ../admin/class-is-settings-fields.php:279
1222
  msgid "Select menu search form style."
1223
  msgstr ""
1224
 
1225
+ #: ../admin/class-is-settings-fields.php:283
1226
  msgid "Default"
1227
  msgstr ""
1228
 
1229
+ #: ../admin/class-is-settings-fields.php:284
1230
  msgid "Dropdown"
1231
  msgstr ""
1232
 
1233
+ #: ../admin/class-is-settings-fields.php:285
1234
  msgid "Sliding"
1235
  msgstr ""
1236
 
1237
+ #: ../admin/class-is-settings-fields.php:286
1238
  msgid "Full Width"
1239
  msgstr ""
1240
 
1241
+ #: ../admin/class-is-settings-fields.php:287
1242
  msgid "Popup"
1243
  msgstr ""
1244
 
1245
+ #: ../admin/class-is-settings-fields.php:314
1246
  msgid "Select menu magnifier icon color."
1247
  msgstr ""
1248
 
1249
+ #: ../admin/class-is-settings-fields.php:327
1250
  msgid "Display search form close icon"
1251
  msgstr ""
1252
 
1253
+ #: ../admin/class-is-settings-fields.php:334
1254
  msgid "Add menu title to display in place of search icon."
1255
  msgstr ""
1256
 
1257
+ #: ../admin/class-is-settings-fields.php:344
1258
  msgid "Select search form that will control menu search functionality."
1259
  msgstr ""
1260
 
1261
+ #: ../admin/class-is-settings-fields.php:355
1262
+ #: ../admin/class-is-settings-fields.php:438
1263
+ #: ../admin/class-is-settings-fields.php:470
1264
  msgid "None"
1265
  msgstr ""
1266
 
1267
+ #: ../admin/class-is-settings-fields.php:364
1268
+ #: ../admin/class-is-settings-fields.php:448
1269
+ #: ../admin/class-is-settings-fields.php:478 ../includes/class-is-widget.php:85
1270
  msgid "Create New"
1271
  msgstr ""
1272
 
1273
+ #: ../admin/class-is-settings-fields.php:372
1274
  msgid "Add class to search form menu item."
1275
  msgstr ""
1276
 
1277
+ #: ../admin/class-is-settings-fields.php:378
1278
  msgid "Add multiple classes seperated by space."
1279
  msgstr ""
1280
 
1281
+ #: ../admin/class-is-settings-fields.php:384
1282
  msgid ""
1283
  "Add Google Custom Search( CSE ) search form code that will replace default "
1284
  "search form."
1285
  msgstr ""
1286
 
1287
+ #: ../admin/class-is-settings-fields.php:402
1288
  msgid "Enabled"
1289
  msgstr ""
1290
 
1291
+ #: ../admin/class-is-settings-fields.php:403
1292
  msgid "Disabled"
1293
  msgstr ""
1294
 
1295
+ #: ../admin/class-is-settings-fields.php:404
1296
  msgid "Google Analytics tracking for searches"
1297
  msgstr ""
1298
 
1299
+ #: ../admin/class-is-settings-fields.php:405
1300
  msgid "Search Analytics uses Google Analytics to track searches."
1301
  msgstr ""
1302
 
1303
+ #: ../admin/class-is-settings-fields.php:406
1304
  #, php-format
1305
  msgid "You need %s Google Analytics %s to be installed on your site."
1306
  msgstr ""
1307
 
1308
+ #: ../admin/class-is-settings-fields.php:407
1309
  msgid ""
1310
  "Data will be visible inside Google Analytics 'Events' and 'Site Search' "
1311
  "report."
1312
  msgstr ""
1313
 
1314
+ #: ../admin/class-is-settings-fields.php:408
1315
  msgid "Events will be as below:"
1316
  msgstr ""
1317
 
1318
+ #: ../admin/class-is-settings-fields.php:409
1319
  msgid "Category - Results Found / Nothing Found"
1320
  msgstr ""
1321
 
1322
+ #: ../admin/class-is-settings-fields.php:410
1323
  msgid "Action - Ivory Search - ID"
1324
  msgstr ""
1325
 
1326
+ #: ../admin/class-is-settings-fields.php:411
1327
  msgid "Label - Value of search term"
1328
  msgstr ""
1329
 
1330
+ #: ../admin/class-is-settings-fields.php:412
1331
  #, php-format
1332
  msgid ""
1333
  "Need to %s activate Site Search feature %s inside Google Analytics to "
1334
  "display data inside 'Site Search' report."
1335
  msgstr ""
1336
 
1337
+ #: ../admin/class-is-settings-fields.php:413
1338
  msgid ""
1339
  "Enable Site search Tracking option in Site Search Settings and set its "
1340
  "parameters as below."
1341
  msgstr ""
1342
 
1343
+ #: ../admin/class-is-settings-fields.php:414
1344
  msgid "Query parameter - s"
1345
  msgstr ""
1346
 
1347
+ #: ../admin/class-is-settings-fields.php:415
1348
  msgid "Category parameter - id / result"
1349
  msgstr ""
1350
 
1351
+ #: ../admin/class-is-settings-fields.php:426
1352
  msgid "Select search form to display in site header( Not Menu )."
1353
  msgstr ""
1354
 
1355
+ #: ../admin/class-is-settings-fields.php:451
1356
  msgid ""
1357
  "Please note that the above option displays search form in site header and "
1358
  "not in navigation menu."
1359
  msgstr ""
1360
 
1361
+ #: ../admin/class-is-settings-fields.php:459
1362
  msgid "Select search form to display in site footer."
1363
  msgstr ""
1364
 
1365
+ #: ../admin/class-is-settings-fields.php:494
1366
  msgid "Display search form in site header on mobile devices"
1367
  msgstr ""
1368
 
1369
+ #: ../admin/class-is-settings-fields.php:497
1370
  msgid ""
1371
  "If this site uses cache then please select the below option to display "
1372
  "search form on mobile."
1373
  msgstr ""
1374
 
1375
+ #: ../admin/class-is-settings-fields.php:504
1376
  msgid "This site uses cache"
1377
  msgstr ""
1378
 
1379
+ #: ../admin/class-is-settings-fields.php:513
1380
  msgid "Add custom CSS code."
1381
  msgstr ""
1382
 
1383
+ #: ../admin/class-is-settings-fields.php:526
1384
  msgid "Add Stopwords that will not be searched."
1385
  msgstr ""
1386
 
1387
+ #: ../admin/class-is-settings-fields.php:531
1388
  msgid "Please separate multiple words with commas."
1389
  msgstr ""
1390
 
1391
+ #: ../admin/class-is-settings-fields.php:540
1392
  msgid "Add synonyms to make the searches find better results."
1393
  msgstr ""
1394
 
1395
+ #: ../admin/class-is-settings-fields.php:542
1396
  msgid ""
1397
  "If you add bird = crow to the list of synonyms, searches for bird "
1398
  "automatically become a search for bird crow and will thus match to posts "
1399
  "that include either bird or crow."
1400
  msgstr ""
1401
 
1402
+ #: ../admin/class-is-settings-fields.php:547
1403
  msgid "The format here is key = value"
1404
  msgstr ""
1405
 
1406
+ #: ../admin/class-is-settings-fields.php:548
1407
  msgid "Please add every synonyms key = value pairs on new line."
1408
  msgstr ""
1409
 
1410
+ #: ../admin/class-is-settings-fields.php:550
1411
  msgid ""
1412
  "This only works for search forms configured to search any of the search "
1413
  "terms(OR) and not all search terms(AND) in the search form Options."
1414
  msgstr ""
1415
 
1416
+ #: ../admin/class-is-settings-fields.php:559
1417
  msgid ""
1418
  "Enable below options to disable loading of plugin CSS and JavaScript files."
1419
  msgstr ""
1420
 
1421
+ #: ../admin/class-is-settings-fields.php:563
1422
  msgid "Do not load plugin CSS files"
1423
  msgstr ""
1424
 
1425
+ #: ../admin/class-is-settings-fields.php:564
1426
  msgid "Do not load plugin JavaScript files"
1427
  msgstr ""
1428
 
1429
+ #: ../admin/class-is-settings-fields.php:580
1430
  msgid ""
1431
  "If checked, you have to add following plugin file code into your child theme "
1432
  "CSS file."
1433
  msgstr ""
1434
 
1435
+ #: ../admin/class-is-settings-fields.php:585
1436
  msgid ""
1437
  "If checked, you have to add following plugin files code into your child "
1438
  "theme JavaScript file."
1439
  msgstr ""
1440
 
1441
+ #: ../admin/class-is-settings-fields.php:602
1442
  msgid "Warning: Use with caution."
1443
  msgstr ""
1444
 
1445
+ #: ../admin/class-is-settings-fields.php:607
1446
  msgid ""
1447
  "Do not use Default Search Form to control WordPress default search "
1448
  "functionality"
1449
  msgstr ""
1450
 
1451
+ #: ../admin/class-is-settings-fields.php:616
1452
  msgid "Disable search functionality on entire website"
1453
  msgstr ""
1454
 
1455
+ #: ../admin/class-is-settings-fields.php:626
1456
  msgid ""
1457
  "Display easy edit links of search form on the website frontend to the admin "
1458
  "users"
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: search, woocommerce search, image search, ajax search, search shortcode, l
5
  Requires at least: 3.9
6
  Tested up to: 5.5
7
  Requires PHP: 5.2.4
8
- Stable tag: 4.5.8
9
  License: GPLv2 or later
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -193,6 +193,9 @@ Yes we do. We try our best to help free users with customisation requests and we
193
 
194
  == Changelog ==
195
 
 
 
 
196
  = 4.5.8 =
197
  * Fixed - Draft posts were getting searched in the free plugin version.
198
 
5
  Requires at least: 3.9
6
  Tested up to: 5.5
7
  Requires PHP: 5.2.4
8
+ Stable tag: 4.5.9
9
  License: GPLv2 or later
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
 
193
 
194
  == Changelog ==
195
 
196
+ = 4.5.9 =
197
+ * Fixed - Menu search options was not saving in older WP version than 5.5
198
+
199
  = 4.5.8 =
200
  * Fixed - Draft posts were getting searched in the free plugin version.
201