Ivory Search – WordPress Search Plugin - Version 4.4.14

Version Description

  • Fixed - Page was scrolling to bottom clicking on menu search icon.
  • Added - is_show_menu_link_title filter to remove menu search link title.
Download this release

Release Info

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

Code changes from version 4.4.13 to 4.4.14

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.4.13
7
  * Author: Ivory Search
8
  * Author URI: https://ivorysearch.com/
9
  * License: GPL2+
@@ -107,7 +107,7 @@ final class Ivory_Search {
107
  private function define_constants() {
108
 
109
  if ( ! defined( 'IS_VERSION' ) ) {
110
- define( 'IS_VERSION', '4.4.13' );
111
  }
112
  if ( ! defined( 'IS_PLUGIN_FILE' ) ) {
113
  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.4.14
7
  * Author: Ivory Search
8
  * Author URI: https://ivorysearch.com/
9
  * License: GPL2+
107
  private function define_constants() {
108
 
109
  if ( ! defined( 'IS_VERSION' ) ) {
110
+ define( 'IS_VERSION', '4.4.14' );
111
  }
112
  if ( ! defined( 'IS_PLUGIN_FILE' ) ) {
113
  define( 'IS_PLUGIN_FILE', __FILE__ );
admin/class-is-editor.php CHANGED
@@ -240,9 +240,6 @@ class IS_Search_Editor
240
  $col_title = '<span>' . $post_types[$post_type]->labels->name . '</span>';
241
  $temp = '';
242
  foreach ( $posts as $post2 ) {
243
- if ( isset( $excludes['post__not_in'] ) && in_array( $post2->ID, $excludes['post__not_in'] ) ) {
244
- continue;
245
- }
246
  $checked = ( isset( $includes['post__in'] ) && in_array( $post2->ID, $includes['post__in'] ) ? $post2->ID : 0 );
247
  if ( $checked ) {
248
  array_push( $selected_pt, $post_type );
@@ -275,13 +272,9 @@ class IS_Search_Editor
275
  if ( !empty($selected_pt) && in_array( $post_type, $selected_pt ) ) {
276
  $checked = 'selected';
277
  } else {
278
-
279
  if ( isset( $includes['post__in'] ) ) {
280
- echo '<span class="notice-is-info">' . __( 'The search form is configured to only search specific posts of another post type.', 'add-search-to-menu' ) . '</span>' ;
281
- echo '</div></div>' ;
282
- continue;
283
  }
284
-
285
  }
286
 
287
  echo '<p class="check-radio"><label for="' . $post_type . '-post-search_all" ><input class="is-post-select" type="radio" id="' . $post_type . '-post-search_all" name="' . $post_type . '[post_search_radio]" value="all" ' . checked( 'all', $checked, false ) . '/>' ;
@@ -1892,28 +1885,25 @@ class IS_Search_Editor
1892
 
1893
  $html .= '</div>';
1894
  $checked = 'all';
1895
-
1896
  if ( !empty($selected_pt) && in_array( $post_type, $selected_pt ) ) {
1897
  $checked = 'selected';
1898
- } else {
 
 
1899
 
1900
- if ( empty($selected_pt2) && isset( $includes['post__in'] ) ) {
1901
  echo '<br /><span class="notice-is-info">' . sprintf( esc_html__( "The search form is configured in the %s section to only search specific posts of another post type.", 'add-search-to-menu' ), $includes_url ) . '</span>' ;
1902
  echo '</div></div>' ;
1903
  continue;
1904
  }
1905
-
1906
- }
1907
-
1908
-
1909
- if ( empty($selected_pt2) ) {
1910
  echo '<p class="check-radio"><label for="' . $post_type . '-post-search_all" ><input class="is-post-select" type="radio" id="' . $post_type . '-post-search_all" name="' . $post_type . '[post_search_radio]" value="all" ' . checked( 'all', $checked, false ) . '/>' ;
1911
  echo '<span class="toggle-check-text"></span>' . sprintf( esc_html__( "Do not exclude any %s from search", 'add-search-to-menu' ), strtolower( $post_types2[$post_type]->labels->singular_name ) ) . '</label></p>' ;
1912
  echo '<p class="check-radio"><label for="' . $post_type . '-post-search_selected" ><input class="is-post-select" type="radio" id="' . $post_type . '-post-search_selected" name="' . $post_type . '[post_search_radio]" value="selected" ' . checked( 'selected', $checked, false ) . '/>' ;
1913
  echo '<span class="toggle-check-text"></span>' . sprintf( esc_html__( "Exclude selected %s from search", 'add-search-to-menu' ), strtolower( $post_types2[$post_type]->labels->name ) ) . '</label></p>' ;
1914
  echo $html ;
1915
  } else {
1916
- echo '<br /><span class="notice-is-info">' . sprintf( esc_html__( "The search form is configured in the %s section to only search specific posts.", 'add-search-to-menu' ), $includes_url ) . '</span><br />' ;
1917
  }
1918
 
1919
  }
240
  $col_title = '<span>' . $post_types[$post_type]->labels->name . '</span>';
241
  $temp = '';
242
  foreach ( $posts as $post2 ) {
 
 
 
243
  $checked = ( isset( $includes['post__in'] ) && in_array( $post2->ID, $includes['post__in'] ) ? $post2->ID : 0 );
244
  if ( $checked ) {
245
  array_push( $selected_pt, $post_type );
272
  if ( !empty($selected_pt) && in_array( $post_type, $selected_pt ) ) {
273
  $checked = 'selected';
274
  } else {
 
275
  if ( isset( $includes['post__in'] ) ) {
276
+ echo '<span class="notice-is-info">' . sprintf( __( 'The %s are not searchable as the search form is configured to only search specific posts of another post type.', 'add-search-to-menu' ), strtolower( $post_types[$post_type]->labels->name ) ) . '</span><br /><br />' ;
 
 
277
  }
 
278
  }
279
 
280
  echo '<p class="check-radio"><label for="' . $post_type . '-post-search_all" ><input class="is-post-select" type="radio" id="' . $post_type . '-post-search_all" name="' . $post_type . '[post_search_radio]" value="all" ' . checked( 'all', $checked, false ) . '/>' ;
1885
 
1886
  $html .= '</div>';
1887
  $checked = 'all';
 
1888
  if ( !empty($selected_pt) && in_array( $post_type, $selected_pt ) ) {
1889
  $checked = 'selected';
1890
+ }
1891
+
1892
+ if ( empty($selected_pt2) ) {
1893
 
1894
+ if ( isset( $includes['post__in'] ) ) {
1895
  echo '<br /><span class="notice-is-info">' . sprintf( esc_html__( "The search form is configured in the %s section to only search specific posts of another post type.", 'add-search-to-menu' ), $includes_url ) . '</span>' ;
1896
  echo '</div></div>' ;
1897
  continue;
1898
  }
1899
+
 
 
 
 
1900
  echo '<p class="check-radio"><label for="' . $post_type . '-post-search_all" ><input class="is-post-select" type="radio" id="' . $post_type . '-post-search_all" name="' . $post_type . '[post_search_radio]" value="all" ' . checked( 'all', $checked, false ) . '/>' ;
1901
  echo '<span class="toggle-check-text"></span>' . sprintf( esc_html__( "Do not exclude any %s from search", 'add-search-to-menu' ), strtolower( $post_types2[$post_type]->labels->singular_name ) ) . '</label></p>' ;
1902
  echo '<p class="check-radio"><label for="' . $post_type . '-post-search_selected" ><input class="is-post-select" type="radio" id="' . $post_type . '-post-search_selected" name="' . $post_type . '[post_search_radio]" value="selected" ' . checked( 'selected', $checked, false ) . '/>' ;
1903
  echo '<span class="toggle-check-text"></span>' . sprintf( esc_html__( "Exclude selected %s from search", 'add-search-to-menu' ), strtolower( $post_types2[$post_type]->labels->name ) ) . '</label></p>' ;
1904
  echo $html ;
1905
  } else {
1906
+ echo '<br /><span class="notice-is-info">' . sprintf( esc_html__( 'The search form is configured in the %1$s section to only search specific %2$s.', 'add-search-to-menu' ), $includes_url, strtolower( $post_types2[$post_type]->labels->name ) ) . '</span><br />' ;
1907
  }
1908
 
1909
  }
admin/js/ivory-search-admin.js CHANGED
@@ -375,6 +375,7 @@
375
  } else if ( 'selected' === $( this ).val() ) {
376
  if ( $( this ).hasClass( 'is-post-select' ) ) {
377
  $( this ).closest( 'div' ).find( '.is-posts' ).show();
 
378
  } else if ( $( this ).hasClass( 'is-tax-select' ) ) {
379
  $( this ).closest( 'div' ).find( '.is-taxes' ).show();
380
  } else if ( $( this ).hasClass( 'is-mime-select' ) ) {
@@ -383,6 +384,7 @@
383
  } else {
384
  if ( $( this ).hasClass( 'is-post-select' ) ) {
385
  $( this ).closest( 'div' ).find( '.is-posts' ).hide();
 
386
  $( this ).closest( 'div' ).find( '.is-posts select option').prop( 'selected', false );
387
  } else if ( $( this ).hasClass( 'is-tax-select' ) ) {
388
  $( this ).closest( 'div' ).find( '.is-taxes' ).hide();
@@ -394,41 +396,6 @@
394
  }
395
  } );
396
 
397
- function is_all_mulitple_options_selected( this2 ) {
398
- if ( $( this2 ).closest('.is-metas').length ) {
399
- return;
400
- }
401
- var all_options = $( this2 ).parent().find( 'option' ).length;
402
- var selected_options = $( this2 ).parent().find( 'option:selected' ).length;
403
- var deselect_all = false;
404
- if ( all_options === selected_options ) {
405
- deselect_all = true;
406
- alert('No need to select all instead use alternative option');
407
- } else {
408
- if ( $( '#excludes' ).length ) {
409
- if ( ( ( all_options / 2 ) + 1 ) <= selected_options ) {
410
- deselect_all = true;
411
- alert('Instead select specific to search in the Includes section');
412
- }
413
- } else if ( $( '#includes' ).length ) {
414
- if ( ( ( all_options / 2 ) + 1 ) <= selected_options ) {
415
- deselect_all = true;
416
- alert('Instead select specific to exclude in the Excludes section');
417
- }
418
- }
419
- }
420
- if ( deselect_all ) {
421
- $( this2 ).parent().find( 'option' ).prop( 'selected', false );
422
- }
423
- }
424
-
425
- $( '#search-form-editor select[multiple] option' ).on( 'click', function() {
426
- is_all_mulitple_options_selected( this );
427
- } );
428
-
429
- $( '#search-form-editor select[multiple]' ).on( 'keyup', function() {
430
- is_all_mulitple_options_selected( this );
431
- } );
432
 
433
  $('.includes_extras input[type="checkbox"]').on('click', function() {
434
 
@@ -687,20 +654,31 @@
687
  }
688
 
689
  toggle_enable_customize();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
690
 
691
  $( '#_is_customize-enable_customize' ).on( 'click', function() {
692
- toggle_enable_customize();
693
- window.setTimeout(function () {
694
- alert( 'Please save the changes.' );
695
- }, 300);
696
  } );
697
 
698
  $( '.form-table-panel-customize .is-field-disabled-message .message' ).on( 'click', function() {
699
- $('#_is_customize-enable_customize').prop('checked', true);
700
- toggle_enable_customize();
701
- window.setTimeout(function () {
702
- alert( 'Please save the changes.' );
703
- }, 300);
704
  } );
705
 
706
  } )( jQuery );
375
  } else if ( 'selected' === $( this ).val() ) {
376
  if ( $( this ).hasClass( 'is-post-select' ) ) {
377
  $( this ).closest( 'div' ).find( '.is-posts' ).show();
378
+ $( this ).closest( 'div' ).find( '.notice-is-info' ).hide();
379
  } else if ( $( this ).hasClass( 'is-tax-select' ) ) {
380
  $( this ).closest( 'div' ).find( '.is-taxes' ).show();
381
  } else if ( $( this ).hasClass( 'is-mime-select' ) ) {
384
  } else {
385
  if ( $( this ).hasClass( 'is-post-select' ) ) {
386
  $( this ).closest( 'div' ).find( '.is-posts' ).hide();
387
+ $( this ).closest( 'div' ).find( '.notice-is-info' ).show();
388
  $( this ).closest( 'div' ).find( '.is-posts select option').prop( 'selected', false );
389
  } else if ( $( this ).hasClass( 'is-tax-select' ) ) {
390
  $( this ).closest( 'div' ).find( '.is-taxes' ).hide();
396
  }
397
  } );
398
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
399
 
400
  $('.includes_extras input[type="checkbox"]').on('click', function() {
401
 
654
  }
655
 
656
  toggle_enable_customize();
657
+
658
+ // Displays customizer enable confirmation alert.
659
+ function enable_customizer_alert() {
660
+ window.setTimeout(function () {
661
+ var r = confirm("A page reload is required for this change.");
662
+ if ( r == true ) {
663
+ toggle_enable_customize();
664
+ $('#is-admin-form-element').submit();
665
+ } else {
666
+ if( $( '#_is_customize-enable_customize' ).is(':checked') ) {
667
+ $('#_is_customize-enable_customize').prop('checked', false);
668
+ } else {
669
+ $('#_is_customize-enable_customize').prop('checked', true);
670
+ }
671
+ }
672
+ }, 300);
673
+ }
674
 
675
  $( '#_is_customize-enable_customize' ).on( 'click', function() {
676
+ enable_customizer_alert();
 
 
 
677
  } );
678
 
679
  $( '.form-table-panel-customize .is-field-disabled-message .message' ).on( 'click', function() {
680
+ $( '#_is_customize-enable_customize' ).trigger('click');
681
+
 
 
 
682
  } );
683
 
684
  } )( jQuery );
includes/class-is.php CHANGED
@@ -156,7 +156,10 @@ class IS_Loader {
156
 
157
  $header_menu_search = isset( $this->opt['header_menu_search'] ) ? $this->opt['header_menu_search'] : 0;
158
  $site_cache = isset( $this->opt['site_uses_cache'] ) ? $this->opt['site_uses_cache'] : 0;
159
- $display_in_mobile_menu = $header_menu_search && wp_is_mobile() ? true : false;
 
 
 
160
 
161
  if ( $display_in_mobile_menu || $site_cache ) {
162
  add_action( 'wp_head', array( $public, 'header_menu_search' ), 9999999 );
156
 
157
  $header_menu_search = isset( $this->opt['header_menu_search'] ) ? $this->opt['header_menu_search'] : 0;
158
  $site_cache = isset( $this->opt['site_uses_cache'] ) ? $this->opt['site_uses_cache'] : 0;
159
+ $display_in_mobile_menu = false;
160
+ if ( function_exists( 'wp_is_mobile' ) ) {
161
+ $display_in_mobile_menu = $header_menu_search && wp_is_mobile() ? true : false;
162
+ }
163
 
164
  if ( $display_in_mobile_menu || $site_cache ) {
165
  add_action( 'wp_head', array( $public, 'header_menu_search' ), 9999999 );
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-06-24 20:44+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"
@@ -143,7 +143,7 @@ msgid "Validation error occurred."
143
  msgstr ""
144
 
145
  #: ../admin/class-is-admin.php:430 ../admin/class-is-admin.php:435
146
- #: ../admin/class-is-editor.php:683 ../admin/class-is-editor.php:1111
147
  #: ../admin/class-is-help.php:35 ../admin/class-is-help.php:85
148
  #: ../admin/partials/search-form.php:109
149
  msgid "Includes"
@@ -238,19 +238,19 @@ msgstr ""
238
  msgid "Post Types"
239
  msgstr ""
240
 
241
- #: ../admin/class-is-editor.php:114 ../admin/class-is-editor.php:570
242
- #: ../admin/class-is-editor.php:654 ../admin/class-is-editor.php:751
243
- #: ../admin/class-is-editor.php:1082 ../admin/class-is-editor.php:1140
244
- #: ../admin/class-is-editor.php:1422 ../admin/class-is-editor.php:1453
245
- #: ../admin/class-is-editor.php:1569 ../admin/class-is-settings-fields.php:106
246
  msgid "Expand All"
247
  msgstr ""
248
 
249
- #: ../admin/class-is-editor.php:114 ../admin/class-is-editor.php:570
250
- #: ../admin/class-is-editor.php:655 ../admin/class-is-editor.php:752
251
- #: ../admin/class-is-editor.php:1083 ../admin/class-is-editor.php:1140
252
- #: ../admin/class-is-editor.php:1422 ../admin/class-is-editor.php:1453
253
- #: ../admin/class-is-editor.php:1569 ../admin/class-is-settings-fields.php:106
254
  msgid "Collapse All"
255
  msgstr ""
256
 
@@ -270,721 +270,722 @@ msgstr ""
270
  msgid "Do not display post_type in the search URL"
271
  msgstr ""
272
 
273
- #: ../admin/class-is-editor.php:167 ../admin/class-is-editor.php:1132
274
  msgid "( WooCommerce )"
275
  msgstr ""
276
 
277
- #: ../admin/class-is-editor.php:169 ../admin/class-is-editor.php:1134
278
  msgid "( Images, Videos, Audios, Docs, PDFs, Files & Attachments )"
279
  msgstr ""
280
 
281
- #: ../admin/class-is-editor.php:214 ../admin/class-is-editor.php:262
282
- #: ../admin/class-is-editor.php:285 ../admin/class-is-editor.php:336
283
- #: ../admin/class-is-editor.php:1183 ../admin/class-is-editor.php:1236
284
- #: ../admin/class-is-editor.php:1260 ../admin/class-is-editor.php:1307
285
  msgid "Search.."
286
  msgstr ""
287
 
288
- #: ../admin/class-is-editor.php:218 ../admin/class-is-editor.php:1187
289
  msgid "Load All"
290
  msgstr ""
291
 
292
- #: ../admin/class-is-editor.php:223 ../admin/class-is-editor.php:1193
293
  #, php-format
294
  msgid "No %s created."
295
  msgstr ""
296
 
297
- #: ../admin/class-is-editor.php:225 ../admin/class-is-editor.php:271
298
- #: ../admin/class-is-editor.php:295 ../admin/class-is-editor.php:344
299
- #: ../admin/class-is-editor.php:1195 ../admin/class-is-editor.php:1245
300
- #: ../admin/class-is-editor.php:1271 ../admin/class-is-editor.php:1315
301
  msgid ""
302
  "Hold down the control (ctrl) or command button to select multiple options."
303
  msgstr ""
304
 
305
- #: ../admin/class-is-editor.php:233
 
306
  msgid ""
307
- "The search form is configured to only search specific posts of another post "
308
- "type."
309
  msgstr ""
310
 
311
- #: ../admin/class-is-editor.php:238
312
  #, php-format
313
  msgid "Search all %s"
314
  msgstr ""
315
 
316
- #: ../admin/class-is-editor.php:240
317
  #, php-format
318
  msgid "Search only selected %s"
319
  msgstr ""
320
 
321
- #: ../admin/class-is-editor.php:275
322
  #, php-format
323
  msgid "Search %s of all taxonomies (%s categories, tags & terms %s)"
324
  msgstr ""
325
 
326
- #: ../admin/class-is-editor.php:277
327
  #, php-format
328
  msgid "Search %s of only selected taxonomies (%s categories, tags & terms %s)"
329
  msgstr ""
330
 
331
- #: ../admin/class-is-editor.php:299
332
  #, php-format
333
  msgid "Search selected %s custom fields values"
334
  msgstr ""
335
 
336
- #: ../admin/class-is-editor.php:311
337
  msgid "Search product SKU"
338
  msgstr ""
339
 
340
- #: ../admin/class-is-editor.php:314
341
  msgid "Search product variation"
342
  msgstr ""
343
 
344
- #: ../admin/class-is-editor.php:346
345
  msgid "Selected File Types :"
346
  msgstr ""
347
 
348
- #: ../admin/class-is-editor.php:354 ../admin/class-is-editor.php:1325
349
  msgid "Search all MIME types"
350
  msgstr ""
351
 
352
- #: ../admin/class-is-editor.php:356
353
  msgid "Search only selected MIME types"
354
  msgstr ""
355
 
356
- #: ../admin/class-is-editor.php:361
357
  msgid "Search Images"
358
  msgstr ""
359
 
360
- #: ../admin/class-is-editor.php:363
361
  msgid "Search Videos"
362
  msgstr ""
363
 
364
- #: ../admin/class-is-editor.php:365
365
  msgid "Search Audios"
366
  msgstr ""
367
 
368
- #: ../admin/class-is-editor.php:367
369
  msgid "Search Text Files"
370
  msgstr ""
371
 
372
- #: ../admin/class-is-editor.php:369
373
  msgid "Search PDF Files"
374
  msgstr ""
375
 
376
- #: ../admin/class-is-editor.php:371
377
  msgid "Search Document Files"
378
  msgstr ""
379
 
380
- #: ../admin/class-is-editor.php:378
381
  #, php-format
382
  msgid ""
383
  "This search form is configured in the %s section to not search specific MIME "
384
  "types."
385
  msgstr ""
386
 
387
- #: ../admin/class-is-editor.php:381 ../admin/class-is-editor.php:1351
388
  msgid ""
389
  "You are using WordPress version less than 4.9 which does not support "
390
  "searching by MIME type."
391
  msgstr ""
392
 
393
- #: ../admin/class-is-editor.php:390 ../admin/class-is-editor.php:838
394
- #: ../admin/class-is-editor.php:1057 ../admin/class-is-list-table.php:34
395
  msgid "Date"
396
  msgstr ""
397
 
398
- #: ../admin/class-is-editor.php:394
399
  msgid "Search posts created only in the specified date range."
400
  msgstr ""
401
 
402
- #: ../admin/class-is-editor.php:400
403
  msgid "From"
404
  msgstr ""
405
 
406
- #: ../admin/class-is-editor.php:400
407
  msgid "To"
408
  msgstr ""
409
 
410
- #: ../admin/class-is-editor.php:410 ../admin/class-is-editor.php:1361
411
  msgid "Authors"
412
  msgstr ""
413
 
414
- #: ../admin/class-is-editor.php:414
415
  msgid "Search posts created by selected authors."
416
  msgstr ""
417
 
418
- #: ../admin/class-is-editor.php:433 ../admin/class-is-editor.php:435
419
  msgid "Searches all author posts"
420
  msgstr ""
421
 
422
- #: ../admin/class-is-editor.php:463
423
  #, php-format
424
  msgid ""
425
  "This search form is configured in the %s section to not search for specific "
426
  "author posts."
427
  msgstr ""
428
 
429
- #: ../admin/class-is-editor.php:471
430
  msgid "Search author Display Name and display the posts created by that author"
431
  msgstr ""
432
 
433
- #: ../admin/class-is-editor.php:476
434
  msgid "Comments"
435
  msgstr ""
436
 
437
- #: ../admin/class-is-editor.php:480
438
  msgid "Search posts by configured comments."
439
  msgstr ""
440
 
441
- #: ../admin/class-is-editor.php:487
442
  msgid "Search posts having number of comments"
443
  msgstr ""
444
 
445
- #: ../admin/class-is-editor.php:497
446
  msgid "NA"
447
  msgstr ""
448
 
449
- #: ../admin/class-is-editor.php:508
450
  msgid "Search approved comment content"
451
  msgstr ""
452
 
453
- #: ../admin/class-is-editor.php:513 ../admin/class-is-editor.php:1421
454
  msgid "Post Status"
455
  msgstr ""
456
 
457
- #: ../admin/class-is-editor.php:517
458
  msgid "Search posts having selected post statuses."
459
  msgstr ""
460
 
461
- #: ../admin/class-is-editor.php:534
462
  msgid "Select Post Status"
463
  msgstr ""
464
 
465
- #: ../admin/class-is-editor.php:554
466
  msgid "Password Protected"
467
  msgstr ""
468
 
469
- #: ../admin/class-is-editor.php:560
470
  msgid "Search posts with or without passwords"
471
  msgstr ""
472
 
473
- #: ../admin/class-is-editor.php:562
474
  msgid "Search posts with passwords"
475
  msgstr ""
476
 
477
- #: ../admin/class-is-editor.php:564
478
  msgid "Search posts without passwords"
479
  msgstr ""
480
 
481
- #: ../admin/class-is-editor.php:569 ../admin/class-is-editor.php:1568
482
  #: ../admin/class-is-settings-fields.php:139
483
  msgid "Extras"
484
  msgstr ""
485
 
486
- #: ../admin/class-is-editor.php:576
487
  #, php-format
488
  msgid "Search post title %s( File title )%s"
489
  msgstr ""
490
 
491
- #: ../admin/class-is-editor.php:579
492
  #, php-format
493
  msgid "Search post content %s( File description )%s"
494
  msgstr ""
495
 
496
- #: ../admin/class-is-editor.php:582
497
  #, php-format
498
  msgid "Search post excerpt %s( File caption )%s"
499
  msgstr ""
500
 
501
- #: ../admin/class-is-editor.php:585
502
  #, php-format
503
  msgid "Search category/tag title %s( Displays posts of the category/tag )%s"
504
  msgstr ""
505
 
506
- #: ../admin/class-is-editor.php:588
507
  #, php-format
508
  msgid ""
509
  "Search category/tag description %s( Displays posts of the category/tag )%s"
510
  msgstr ""
511
 
512
- #: ../admin/class-is-editor.php:609
513
  msgid ""
514
  "Note: The below option is disabled and set to OR as you have configured the "
515
  "search form to search multiple taxonomies."
516
  msgstr ""
517
 
518
- #: ../admin/class-is-editor.php:614
519
  msgid "AND - Search posts having all the above selected category terms"
520
  msgstr ""
521
 
522
- #: ../admin/class-is-editor.php:616
523
  msgid "OR - Search posts having any one of the above selected category terms"
524
  msgstr ""
525
 
526
- #: ../admin/class-is-editor.php:637
527
  msgid "Use below options to customize this search form."
528
  msgstr ""
529
 
530
- #: ../admin/class-is-editor.php:644 ../admin/class-is-editor.php:659
531
  msgid "Enable Search Form Customization"
532
  msgstr ""
533
 
534
- #: ../admin/class-is-editor.php:652 ../admin/class-is-editor.php:1080
535
  #: ../includes/class-is-search-form.php:526
536
  msgid "Customizer"
537
  msgstr ""
538
 
539
- #: ../admin/class-is-editor.php:660
540
  msgid ""
541
  "Use below customizer to customize search form colors, text and search form "
542
  "style."
543
  msgstr ""
544
 
545
- #: ../admin/class-is-editor.php:668
546
  msgid "Search Form Customizer"
547
  msgstr ""
548
 
549
- #: ../admin/class-is-editor.php:717 ../public/class-is-ajax.php:67
550
  msgid "Nothing found"
551
  msgstr ""
552
 
553
- #: ../admin/class-is-editor.php:720
554
  msgid "View All"
555
  msgstr ""
556
 
557
- #: ../admin/class-is-editor.php:724
558
  msgid "More Results.."
559
  msgstr ""
560
 
561
- #: ../admin/class-is-editor.php:735
562
  msgid ""
563
  "Configure below options to manage AJAX functionality of this search form."
564
  msgstr ""
565
 
566
- #: ../admin/class-is-editor.php:742 ../admin/class-is-editor.php:756
567
- #: ../admin/class-is-editor.php:938 ../admin/class-is-editor.php:1087
568
  msgid "Enable AJAX Search"
569
  msgstr ""
570
 
571
- #: ../admin/class-is-editor.php:749
572
  msgid "Search Results"
573
  msgstr ""
574
 
575
- #: ../admin/class-is-editor.php:757
576
  msgid "Display selected content in the search results."
577
  msgstr ""
578
 
579
- #: ../admin/class-is-editor.php:764
580
  msgid "Description"
581
  msgstr ""
582
 
583
- #: ../admin/class-is-editor.php:772
584
  msgid "Excerpt"
585
  msgstr ""
586
 
587
- #: ../admin/class-is-editor.php:778
588
  msgid "Content"
589
  msgstr ""
590
 
591
- #: ../admin/class-is-editor.php:786
592
  msgid "Description Length."
593
  msgstr ""
594
 
595
- #: ../admin/class-is-editor.php:794
596
  msgid "Image"
597
  msgstr ""
598
 
599
- #: ../admin/class-is-editor.php:805
600
  msgid "Categories"
601
  msgstr ""
602
 
603
- #: ../admin/class-is-editor.php:816
604
  msgid "Tags"
605
  msgstr ""
606
 
607
- #: ../admin/class-is-editor.php:827 ../admin/class-is-list-table.php:33
608
  msgid "Author"
609
  msgstr ""
610
 
611
- #: ../admin/class-is-editor.php:845
612
  msgid "Minimum number of characters required to run ajax search."
613
  msgstr ""
614
 
615
- #: ../admin/class-is-editor.php:850
616
  msgid "Search results box max height."
617
  msgstr ""
618
 
619
- #: ../admin/class-is-editor.php:853
620
  msgid "Configure the plugin text displayed in the search results."
621
  msgstr ""
622
 
623
- #: ../admin/class-is-editor.php:858
624
  msgid "Text when there is no search results. HTML tags is allowed."
625
  msgstr ""
626
 
627
- #: ../admin/class-is-editor.php:867
628
  msgid "Show 'More Results..' text in the bottom of the search results box"
629
  msgstr ""
630
 
631
- #: ../admin/class-is-editor.php:875
632
  msgid "Text for the \"More Results..\"."
633
  msgstr ""
634
 
635
- #: ../admin/class-is-editor.php:884
636
  msgid "Redirect to search results page clicking on the 'More Results..' text"
637
  msgstr ""
638
 
639
- #: ../admin/class-is-editor.php:894
640
  msgid ""
641
  "View All Result - Show link to search results page at the bottom of search "
642
  "results block."
643
  msgstr ""
644
 
645
- #: ../admin/class-is-editor.php:903
646
  msgid ""
647
  "Text for the \"View All\" which shown at the bottom of the search result."
648
  msgstr ""
649
 
650
- #: ../admin/class-is-editor.php:908
651
  msgid "Configure how the search button should work clicking on it."
652
  msgstr ""
653
 
654
- #: ../admin/class-is-editor.php:914
655
  msgid "Search button displays search results page"
656
  msgstr ""
657
 
658
- #: ../admin/class-is-editor.php:921
659
  msgid "Search button displays ajax search results"
660
  msgstr ""
661
 
662
- #: ../admin/class-is-editor.php:929 ../admin/class-is-help.php:137
663
  msgid "WooCommerce"
664
  msgstr ""
665
 
666
- #: ../admin/class-is-editor.php:936
667
  #, php-format
668
  msgid ""
669
  "Please first configure this search form in the %s section to search "
670
  "WooCommerce product post type."
671
  msgstr ""
672
 
673
- #: ../admin/class-is-editor.php:939
674
  msgid "Display selected WooCommerce content in the search results."
675
  msgstr ""
676
 
677
- #: ../admin/class-is-editor.php:946 ../admin/class-is-editor.php:1058
678
  msgid "Price"
679
  msgstr ""
680
 
681
- #: ../admin/class-is-editor.php:957
682
  msgid "Hide Price for Out of Stock Products"
683
  msgstr ""
684
 
685
- #: ../admin/class-is-editor.php:968
686
  msgid "Sale Badge"
687
  msgstr ""
688
 
689
- #: ../admin/class-is-editor.php:979
690
  msgid "SKU"
691
  msgstr ""
692
 
693
- #: ../admin/class-is-editor.php:990
694
  msgid "Stock Status"
695
  msgstr ""
696
 
697
- #: ../admin/class-is-editor.php:1001 ../public/class-is-ajax.php:623
698
  msgid "Featured Icon"
699
  msgstr ""
700
 
701
- #: ../admin/class-is-editor.php:1012
702
  msgid "Matching Categories"
703
  msgstr ""
704
 
705
- #: ../admin/class-is-editor.php:1023
706
  msgid "Matching Tags"
707
  msgstr ""
708
 
709
- #: ../admin/class-is-editor.php:1034
710
  msgid "Details Box"
711
  msgstr ""
712
 
713
- #: ../admin/class-is-editor.php:1040
714
  msgid "Below options only apply to matching categories or tags."
715
  msgstr ""
716
 
717
- #: ../admin/class-is-editor.php:1042
718
  msgid "Product List"
719
  msgstr ""
720
 
721
- #: ../admin/class-is-editor.php:1045
722
  msgid "All Product"
723
  msgstr ""
724
 
725
- #: ../admin/class-is-editor.php:1046
726
  msgid "Featured Products"
727
  msgstr ""
728
 
729
- #: ../admin/class-is-editor.php:1047
730
  msgid "On-sale Products</option>"
731
  msgstr ""
732
 
733
- #: ../admin/class-is-editor.php:1054
734
  msgid "Order by"
735
  msgstr ""
736
 
737
- #: ../admin/class-is-editor.php:1059
738
  msgid "Random"
739
  msgstr ""
740
 
741
- #: ../admin/class-is-editor.php:1060
742
  msgid "Sales"
743
  msgstr ""
744
 
745
- #: ../admin/class-is-editor.php:1067
746
  msgid "Order"
747
  msgstr ""
748
 
749
- #: ../admin/class-is-editor.php:1070
750
  msgid "ASC"
751
  msgstr ""
752
 
753
- #: ../admin/class-is-editor.php:1071
754
  msgid "DESC"
755
  msgstr ""
756
 
757
- #: ../admin/class-is-editor.php:1088
758
  msgid ""
759
  "Use below customizer to customize AJAX search results color and loader image."
760
  msgstr ""
761
 
762
- #: ../admin/class-is-editor.php:1096
763
  msgid "AJAX Search Customizer"
764
  msgstr ""
765
 
766
- #: ../admin/class-is-editor.php:1115
767
  msgid "This search form excludes the below configured content from search."
768
  msgstr ""
769
 
770
- #: ../admin/class-is-editor.php:1202
771
  #, php-format
772
  msgid ""
773
  "The search form is configured in the %s section to only search specific "
774
  "posts of another post type."
775
  msgstr ""
776
 
777
- #: ../admin/class-is-editor.php:1208
778
  #, php-format
779
  msgid "Do not exclude any %s from search"
780
  msgstr ""
781
 
782
- #: ../admin/class-is-editor.php:1210
783
  #, php-format
784
  msgid "Exclude selected %s from search"
785
  msgstr ""
786
 
787
- #: ../admin/class-is-editor.php:1213
788
  #, php-format
789
  msgid ""
790
- "The search form is configured in the %s section to only search specific "
791
- "posts."
792
  msgstr ""
793
 
794
- #: ../admin/class-is-editor.php:1249
795
  #, php-format
796
  msgid ""
797
  "Do not exclude any %s from search of any taxonomies (%s categories, tags & "
798
  "terms %s)"
799
  msgstr ""
800
 
801
- #: ../admin/class-is-editor.php:1251
802
  #, php-format
803
  msgid ""
804
  "Exclude %s from search of selected taxonomies (%s categories, tags & terms "
805
  "%s)"
806
  msgstr ""
807
 
808
- #: ../admin/class-is-editor.php:1275
809
  #, php-format
810
  msgid "Exclude %s from search having selected custom fields"
811
  msgstr ""
812
 
813
- #: ../admin/class-is-editor.php:1287
814
  msgid "Exclude 'Out of Stock' products from search"
815
  msgstr ""
816
 
817
- #: ../admin/class-is-editor.php:1317
818
  msgid "Excluded File Types :"
819
  msgstr ""
820
 
821
- #: ../admin/class-is-editor.php:1327
822
  msgid "Exclude selected MIME types from search"
823
  msgstr ""
824
 
825
- #: ../admin/class-is-editor.php:1331
826
  msgid "Exclude Images"
827
  msgstr ""
828
 
829
- #: ../admin/class-is-editor.php:1333
830
  msgid "Exclude Videos"
831
  msgstr ""
832
 
833
- #: ../admin/class-is-editor.php:1335
834
  msgid "Exclude Audios"
835
  msgstr ""
836
 
837
- #: ../admin/class-is-editor.php:1337
838
  msgid "Exclude Text Files"
839
  msgstr ""
840
 
841
- #: ../admin/class-is-editor.php:1339
842
  msgid "Exclude PDF Files"
843
  msgstr ""
844
 
845
- #: ../admin/class-is-editor.php:1341
846
  msgid "Exclude Document Files"
847
  msgstr ""
848
 
849
- #: ../admin/class-is-editor.php:1348
850
  #, php-format
851
  msgid ""
852
  "This search form is configured in the %s section to search specific "
853
  "attachments."
854
  msgstr ""
855
 
856
- #: ../admin/class-is-editor.php:1365
857
  msgid "Exclude posts from search created by selected authors."
858
  msgstr ""
859
 
860
- #: ../admin/class-is-editor.php:1384 ../admin/class-is-editor.php:1386
861
  msgid "Search all author posts"
862
  msgstr ""
863
 
864
- #: ../admin/class-is-editor.php:1414
865
  #, php-format
866
  msgid ""
867
  "This search form is configured in the %s section to search posts created by "
868
  "specific authors."
869
  msgstr ""
870
 
871
- #: ../admin/class-is-editor.php:1426
872
  msgid "Exclude posts from search having selected post statuses."
873
  msgstr ""
874
 
875
- #: ../admin/class-is-editor.php:1431
876
  msgid "Exclude sticky posts from search"
877
  msgstr ""
878
 
879
- #: ../admin/class-is-editor.php:1445
880
  msgid "Configure below options to manage functionality of this search form."
881
  msgstr ""
882
 
883
- #: ../admin/class-is-editor.php:1452
884
  msgid "Posts Per Page"
885
  msgstr ""
886
 
887
- #: ../admin/class-is-editor.php:1456
888
  msgid "Display selected number of posts on search results page."
889
  msgstr ""
890
 
891
- #: ../admin/class-is-editor.php:1473
892
  msgid "Order Search Results"
893
  msgstr ""
894
 
895
- #: ../admin/class-is-editor.php:1476
896
  msgid "Display posts on search results page ordered by selected options."
897
  msgstr ""
898
 
899
- #: ../admin/class-is-editor.php:1501
900
  msgid "Highlight Search Terms"
901
  msgstr ""
902
 
903
- #: ../admin/class-is-editor.php:1507
904
  msgid "Highlight searched terms on search results page"
905
  msgstr ""
906
 
907
- #: ../admin/class-is-editor.php:1510
908
  msgid "Select text highlight color"
909
  msgstr ""
910
 
911
- #: ../admin/class-is-editor.php:1516
912
  msgid "Search All Or Any Search Terms"
913
  msgstr ""
914
 
915
- #: ../admin/class-is-editor.php:1520
916
  msgid ""
917
  "Select whether to search posts having all or any of the words being searched."
918
  msgstr ""
919
 
920
- #: ../admin/class-is-editor.php:1525
921
  msgid "OR - Display content having any of the search terms"
922
  msgstr ""
923
 
924
- #: ../admin/class-is-editor.php:1527
925
  msgid "AND - Display content having all the search terms"
926
  msgstr ""
927
 
928
- #: ../admin/class-is-editor.php:1533
929
  msgid "Fuzzy Matching"
930
  msgstr ""
931
 
932
- #: ../admin/class-is-editor.php:1536
933
  msgid ""
934
  "Select whether to search posts having whole or partial word being searched."
935
  msgstr ""
936
 
937
- #: ../admin/class-is-editor.php:1541
938
  msgid "Whole - Search posts that include the whole search term"
939
  msgstr ""
940
 
941
- #: ../admin/class-is-editor.php:1543
942
  msgid ""
943
  "Partial - Also search words in the posts that begins or ends with the search "
944
  "term"
945
  msgstr ""
946
 
947
- #: ../admin/class-is-editor.php:1549
948
  msgid "Keyword Stemming"
949
  msgstr ""
950
 
951
- #: ../admin/class-is-editor.php:1553
952
  msgid "Select whether to search the base word of a searched keyword."
953
  msgstr ""
954
 
955
- #: ../admin/class-is-editor.php:1554
956
  msgid ""
957
  "For Example: If you search \"doing\" then it also searches base word of "
958
  "\"doing\" that is \"do\" in the specified post types."
959
  msgstr ""
960
 
961
- #: ../admin/class-is-editor.php:1555
962
  msgid "Not recommended to use when Fuzzy Matching option is set to Whole."
963
  msgstr ""
964
 
965
- #: ../admin/class-is-editor.php:1561
966
  msgid "Also search base word of searched keyword"
967
  msgstr ""
968
 
969
- #: ../admin/class-is-editor.php:1574
970
  msgid "Display sticky posts to the start of the search results page"
971
  msgstr ""
972
 
973
- #: ../admin/class-is-editor.php:1578
974
  msgid "Display search form only for site administrator"
975
  msgstr ""
976
 
977
- #: ../admin/class-is-editor.php:1582
978
  msgid "Disable this search form"
979
  msgstr ""
980
 
981
- #: ../admin/class-is-editor.php:1585
982
  msgid ""
983
  "Select whether to display an error when user perform search without any "
984
  "search word."
985
  msgstr ""
986
 
987
- #: ../admin/class-is-editor.php:1589
988
  msgid "Display an error for empty search query"
989
  msgstr ""
990
 
@@ -1499,8 +1500,8 @@ msgstr ""
1499
 
1500
  #: ../includes/class-is-admin-public.php:177
1501
  #: ../includes/class-is-search-form.php:451
1502
- #: ../includes/class-is-search-form.php:500 ../public/class-is-public.php:175
1503
- #: ../public/class-is-public.php:223
1504
  msgid "Search"
1505
  msgstr ""
1506
 
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: Ivory Search\n"
5
+ "POT-Creation-Date: 2020-06-30 18:47+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"
143
  msgstr ""
144
 
145
  #: ../admin/class-is-admin.php:430 ../admin/class-is-admin.php:435
146
+ #: ../admin/class-is-editor.php:678 ../admin/class-is-editor.php:1106
147
  #: ../admin/class-is-help.php:35 ../admin/class-is-help.php:85
148
  #: ../admin/partials/search-form.php:109
149
  msgid "Includes"
238
  msgid "Post Types"
239
  msgstr ""
240
 
241
+ #: ../admin/class-is-editor.php:114 ../admin/class-is-editor.php:565
242
+ #: ../admin/class-is-editor.php:649 ../admin/class-is-editor.php:746
243
+ #: ../admin/class-is-editor.php:1077 ../admin/class-is-editor.php:1135
244
+ #: ../admin/class-is-editor.php:1418 ../admin/class-is-editor.php:1449
245
+ #: ../admin/class-is-editor.php:1565 ../admin/class-is-settings-fields.php:106
246
  msgid "Expand All"
247
  msgstr ""
248
 
249
+ #: ../admin/class-is-editor.php:114 ../admin/class-is-editor.php:565
250
+ #: ../admin/class-is-editor.php:650 ../admin/class-is-editor.php:747
251
+ #: ../admin/class-is-editor.php:1078 ../admin/class-is-editor.php:1135
252
+ #: ../admin/class-is-editor.php:1418 ../admin/class-is-editor.php:1449
253
+ #: ../admin/class-is-editor.php:1565 ../admin/class-is-settings-fields.php:106
254
  msgid "Collapse All"
255
  msgstr ""
256
 
270
  msgid "Do not display post_type in the search URL"
271
  msgstr ""
272
 
273
+ #: ../admin/class-is-editor.php:167 ../admin/class-is-editor.php:1127
274
  msgid "( WooCommerce )"
275
  msgstr ""
276
 
277
+ #: ../admin/class-is-editor.php:169 ../admin/class-is-editor.php:1129
278
  msgid "( Images, Videos, Audios, Docs, PDFs, Files & Attachments )"
279
  msgstr ""
280
 
281
+ #: ../admin/class-is-editor.php:211 ../admin/class-is-editor.php:257
282
+ #: ../admin/class-is-editor.php:280 ../admin/class-is-editor.php:331
283
+ #: ../admin/class-is-editor.php:1178 ../admin/class-is-editor.php:1232
284
+ #: ../admin/class-is-editor.php:1256 ../admin/class-is-editor.php:1303
285
  msgid "Search.."
286
  msgstr ""
287
 
288
+ #: ../admin/class-is-editor.php:215 ../admin/class-is-editor.php:1182
289
  msgid "Load All"
290
  msgstr ""
291
 
292
+ #: ../admin/class-is-editor.php:220 ../admin/class-is-editor.php:1188
293
  #, php-format
294
  msgid "No %s created."
295
  msgstr ""
296
 
297
+ #: ../admin/class-is-editor.php:222 ../admin/class-is-editor.php:266
298
+ #: ../admin/class-is-editor.php:290 ../admin/class-is-editor.php:339
299
+ #: ../admin/class-is-editor.php:1190 ../admin/class-is-editor.php:1241
300
+ #: ../admin/class-is-editor.php:1267 ../admin/class-is-editor.php:1311
301
  msgid ""
302
  "Hold down the control (ctrl) or command button to select multiple options."
303
  msgstr ""
304
 
305
+ #: ../admin/class-is-editor.php:230
306
+ #, php-format
307
  msgid ""
308
+ "The %s are not searchable as the search form is configured to only search "
309
+ "specific posts of another post type."
310
  msgstr ""
311
 
312
+ #: ../admin/class-is-editor.php:233
313
  #, php-format
314
  msgid "Search all %s"
315
  msgstr ""
316
 
317
+ #: ../admin/class-is-editor.php:235
318
  #, php-format
319
  msgid "Search only selected %s"
320
  msgstr ""
321
 
322
+ #: ../admin/class-is-editor.php:270
323
  #, php-format
324
  msgid "Search %s of all taxonomies (%s categories, tags & terms %s)"
325
  msgstr ""
326
 
327
+ #: ../admin/class-is-editor.php:272
328
  #, php-format
329
  msgid "Search %s of only selected taxonomies (%s categories, tags & terms %s)"
330
  msgstr ""
331
 
332
+ #: ../admin/class-is-editor.php:294
333
  #, php-format
334
  msgid "Search selected %s custom fields values"
335
  msgstr ""
336
 
337
+ #: ../admin/class-is-editor.php:306
338
  msgid "Search product SKU"
339
  msgstr ""
340
 
341
+ #: ../admin/class-is-editor.php:309
342
  msgid "Search product variation"
343
  msgstr ""
344
 
345
+ #: ../admin/class-is-editor.php:341
346
  msgid "Selected File Types :"
347
  msgstr ""
348
 
349
+ #: ../admin/class-is-editor.php:349 ../admin/class-is-editor.php:1321
350
  msgid "Search all MIME types"
351
  msgstr ""
352
 
353
+ #: ../admin/class-is-editor.php:351
354
  msgid "Search only selected MIME types"
355
  msgstr ""
356
 
357
+ #: ../admin/class-is-editor.php:356
358
  msgid "Search Images"
359
  msgstr ""
360
 
361
+ #: ../admin/class-is-editor.php:358
362
  msgid "Search Videos"
363
  msgstr ""
364
 
365
+ #: ../admin/class-is-editor.php:360
366
  msgid "Search Audios"
367
  msgstr ""
368
 
369
+ #: ../admin/class-is-editor.php:362
370
  msgid "Search Text Files"
371
  msgstr ""
372
 
373
+ #: ../admin/class-is-editor.php:364
374
  msgid "Search PDF Files"
375
  msgstr ""
376
 
377
+ #: ../admin/class-is-editor.php:366
378
  msgid "Search Document Files"
379
  msgstr ""
380
 
381
+ #: ../admin/class-is-editor.php:373
382
  #, php-format
383
  msgid ""
384
  "This search form is configured in the %s section to not search specific MIME "
385
  "types."
386
  msgstr ""
387
 
388
+ #: ../admin/class-is-editor.php:376 ../admin/class-is-editor.php:1347
389
  msgid ""
390
  "You are using WordPress version less than 4.9 which does not support "
391
  "searching by MIME type."
392
  msgstr ""
393
 
394
+ #: ../admin/class-is-editor.php:385 ../admin/class-is-editor.php:833
395
+ #: ../admin/class-is-editor.php:1052 ../admin/class-is-list-table.php:34
396
  msgid "Date"
397
  msgstr ""
398
 
399
+ #: ../admin/class-is-editor.php:389
400
  msgid "Search posts created only in the specified date range."
401
  msgstr ""
402
 
403
+ #: ../admin/class-is-editor.php:395
404
  msgid "From"
405
  msgstr ""
406
 
407
+ #: ../admin/class-is-editor.php:395
408
  msgid "To"
409
  msgstr ""
410
 
411
+ #: ../admin/class-is-editor.php:405 ../admin/class-is-editor.php:1357
412
  msgid "Authors"
413
  msgstr ""
414
 
415
+ #: ../admin/class-is-editor.php:409
416
  msgid "Search posts created by selected authors."
417
  msgstr ""
418
 
419
+ #: ../admin/class-is-editor.php:428 ../admin/class-is-editor.php:430
420
  msgid "Searches all author posts"
421
  msgstr ""
422
 
423
+ #: ../admin/class-is-editor.php:458
424
  #, php-format
425
  msgid ""
426
  "This search form is configured in the %s section to not search for specific "
427
  "author posts."
428
  msgstr ""
429
 
430
+ #: ../admin/class-is-editor.php:466
431
  msgid "Search author Display Name and display the posts created by that author"
432
  msgstr ""
433
 
434
+ #: ../admin/class-is-editor.php:471
435
  msgid "Comments"
436
  msgstr ""
437
 
438
+ #: ../admin/class-is-editor.php:475
439
  msgid "Search posts by configured comments."
440
  msgstr ""
441
 
442
+ #: ../admin/class-is-editor.php:482
443
  msgid "Search posts having number of comments"
444
  msgstr ""
445
 
446
+ #: ../admin/class-is-editor.php:492
447
  msgid "NA"
448
  msgstr ""
449
 
450
+ #: ../admin/class-is-editor.php:503
451
  msgid "Search approved comment content"
452
  msgstr ""
453
 
454
+ #: ../admin/class-is-editor.php:508 ../admin/class-is-editor.php:1417
455
  msgid "Post Status"
456
  msgstr ""
457
 
458
+ #: ../admin/class-is-editor.php:512
459
  msgid "Search posts having selected post statuses."
460
  msgstr ""
461
 
462
+ #: ../admin/class-is-editor.php:529
463
  msgid "Select Post Status"
464
  msgstr ""
465
 
466
+ #: ../admin/class-is-editor.php:549
467
  msgid "Password Protected"
468
  msgstr ""
469
 
470
+ #: ../admin/class-is-editor.php:555
471
  msgid "Search posts with or without passwords"
472
  msgstr ""
473
 
474
+ #: ../admin/class-is-editor.php:557
475
  msgid "Search posts with passwords"
476
  msgstr ""
477
 
478
+ #: ../admin/class-is-editor.php:559
479
  msgid "Search posts without passwords"
480
  msgstr ""
481
 
482
+ #: ../admin/class-is-editor.php:564 ../admin/class-is-editor.php:1564
483
  #: ../admin/class-is-settings-fields.php:139
484
  msgid "Extras"
485
  msgstr ""
486
 
487
+ #: ../admin/class-is-editor.php:571
488
  #, php-format
489
  msgid "Search post title %s( File title )%s"
490
  msgstr ""
491
 
492
+ #: ../admin/class-is-editor.php:574
493
  #, php-format
494
  msgid "Search post content %s( File description )%s"
495
  msgstr ""
496
 
497
+ #: ../admin/class-is-editor.php:577
498
  #, php-format
499
  msgid "Search post excerpt %s( File caption )%s"
500
  msgstr ""
501
 
502
+ #: ../admin/class-is-editor.php:580
503
  #, php-format
504
  msgid "Search category/tag title %s( Displays posts of the category/tag )%s"
505
  msgstr ""
506
 
507
+ #: ../admin/class-is-editor.php:583
508
  #, php-format
509
  msgid ""
510
  "Search category/tag description %s( Displays posts of the category/tag )%s"
511
  msgstr ""
512
 
513
+ #: ../admin/class-is-editor.php:604
514
  msgid ""
515
  "Note: The below option is disabled and set to OR as you have configured the "
516
  "search form to search multiple taxonomies."
517
  msgstr ""
518
 
519
+ #: ../admin/class-is-editor.php:609
520
  msgid "AND - Search posts having all the above selected category terms"
521
  msgstr ""
522
 
523
+ #: ../admin/class-is-editor.php:611
524
  msgid "OR - Search posts having any one of the above selected category terms"
525
  msgstr ""
526
 
527
+ #: ../admin/class-is-editor.php:632
528
  msgid "Use below options to customize this search form."
529
  msgstr ""
530
 
531
+ #: ../admin/class-is-editor.php:639 ../admin/class-is-editor.php:654
532
  msgid "Enable Search Form Customization"
533
  msgstr ""
534
 
535
+ #: ../admin/class-is-editor.php:647 ../admin/class-is-editor.php:1075
536
  #: ../includes/class-is-search-form.php:526
537
  msgid "Customizer"
538
  msgstr ""
539
 
540
+ #: ../admin/class-is-editor.php:655
541
  msgid ""
542
  "Use below customizer to customize search form colors, text and search form "
543
  "style."
544
  msgstr ""
545
 
546
+ #: ../admin/class-is-editor.php:663
547
  msgid "Search Form Customizer"
548
  msgstr ""
549
 
550
+ #: ../admin/class-is-editor.php:712 ../public/class-is-ajax.php:67
551
  msgid "Nothing found"
552
  msgstr ""
553
 
554
+ #: ../admin/class-is-editor.php:715
555
  msgid "View All"
556
  msgstr ""
557
 
558
+ #: ../admin/class-is-editor.php:719
559
  msgid "More Results.."
560
  msgstr ""
561
 
562
+ #: ../admin/class-is-editor.php:730
563
  msgid ""
564
  "Configure below options to manage AJAX functionality of this search form."
565
  msgstr ""
566
 
567
+ #: ../admin/class-is-editor.php:737 ../admin/class-is-editor.php:751
568
+ #: ../admin/class-is-editor.php:933 ../admin/class-is-editor.php:1082
569
  msgid "Enable AJAX Search"
570
  msgstr ""
571
 
572
+ #: ../admin/class-is-editor.php:744
573
  msgid "Search Results"
574
  msgstr ""
575
 
576
+ #: ../admin/class-is-editor.php:752
577
  msgid "Display selected content in the search results."
578
  msgstr ""
579
 
580
+ #: ../admin/class-is-editor.php:759
581
  msgid "Description"
582
  msgstr ""
583
 
584
+ #: ../admin/class-is-editor.php:767
585
  msgid "Excerpt"
586
  msgstr ""
587
 
588
+ #: ../admin/class-is-editor.php:773
589
  msgid "Content"
590
  msgstr ""
591
 
592
+ #: ../admin/class-is-editor.php:781
593
  msgid "Description Length."
594
  msgstr ""
595
 
596
+ #: ../admin/class-is-editor.php:789
597
  msgid "Image"
598
  msgstr ""
599
 
600
+ #: ../admin/class-is-editor.php:800
601
  msgid "Categories"
602
  msgstr ""
603
 
604
+ #: ../admin/class-is-editor.php:811
605
  msgid "Tags"
606
  msgstr ""
607
 
608
+ #: ../admin/class-is-editor.php:822 ../admin/class-is-list-table.php:33
609
  msgid "Author"
610
  msgstr ""
611
 
612
+ #: ../admin/class-is-editor.php:840
613
  msgid "Minimum number of characters required to run ajax search."
614
  msgstr ""
615
 
616
+ #: ../admin/class-is-editor.php:845
617
  msgid "Search results box max height."
618
  msgstr ""
619
 
620
+ #: ../admin/class-is-editor.php:848
621
  msgid "Configure the plugin text displayed in the search results."
622
  msgstr ""
623
 
624
+ #: ../admin/class-is-editor.php:853
625
  msgid "Text when there is no search results. HTML tags is allowed."
626
  msgstr ""
627
 
628
+ #: ../admin/class-is-editor.php:862
629
  msgid "Show 'More Results..' text in the bottom of the search results box"
630
  msgstr ""
631
 
632
+ #: ../admin/class-is-editor.php:870
633
  msgid "Text for the \"More Results..\"."
634
  msgstr ""
635
 
636
+ #: ../admin/class-is-editor.php:879
637
  msgid "Redirect to search results page clicking on the 'More Results..' text"
638
  msgstr ""
639
 
640
+ #: ../admin/class-is-editor.php:889
641
  msgid ""
642
  "View All Result - Show link to search results page at the bottom of search "
643
  "results block."
644
  msgstr ""
645
 
646
+ #: ../admin/class-is-editor.php:898
647
  msgid ""
648
  "Text for the \"View All\" which shown at the bottom of the search result."
649
  msgstr ""
650
 
651
+ #: ../admin/class-is-editor.php:903
652
  msgid "Configure how the search button should work clicking on it."
653
  msgstr ""
654
 
655
+ #: ../admin/class-is-editor.php:909
656
  msgid "Search button displays search results page"
657
  msgstr ""
658
 
659
+ #: ../admin/class-is-editor.php:916
660
  msgid "Search button displays ajax search results"
661
  msgstr ""
662
 
663
+ #: ../admin/class-is-editor.php:924 ../admin/class-is-help.php:137
664
  msgid "WooCommerce"
665
  msgstr ""
666
 
667
+ #: ../admin/class-is-editor.php:931
668
  #, php-format
669
  msgid ""
670
  "Please first configure this search form in the %s section to search "
671
  "WooCommerce product post type."
672
  msgstr ""
673
 
674
+ #: ../admin/class-is-editor.php:934
675
  msgid "Display selected WooCommerce content in the search results."
676
  msgstr ""
677
 
678
+ #: ../admin/class-is-editor.php:941 ../admin/class-is-editor.php:1053
679
  msgid "Price"
680
  msgstr ""
681
 
682
+ #: ../admin/class-is-editor.php:952
683
  msgid "Hide Price for Out of Stock Products"
684
  msgstr ""
685
 
686
+ #: ../admin/class-is-editor.php:963
687
  msgid "Sale Badge"
688
  msgstr ""
689
 
690
+ #: ../admin/class-is-editor.php:974
691
  msgid "SKU"
692
  msgstr ""
693
 
694
+ #: ../admin/class-is-editor.php:985
695
  msgid "Stock Status"
696
  msgstr ""
697
 
698
+ #: ../admin/class-is-editor.php:996 ../public/class-is-ajax.php:623
699
  msgid "Featured Icon"
700
  msgstr ""
701
 
702
+ #: ../admin/class-is-editor.php:1007
703
  msgid "Matching Categories"
704
  msgstr ""
705
 
706
+ #: ../admin/class-is-editor.php:1018
707
  msgid "Matching Tags"
708
  msgstr ""
709
 
710
+ #: ../admin/class-is-editor.php:1029
711
  msgid "Details Box"
712
  msgstr ""
713
 
714
+ #: ../admin/class-is-editor.php:1035
715
  msgid "Below options only apply to matching categories or tags."
716
  msgstr ""
717
 
718
+ #: ../admin/class-is-editor.php:1037
719
  msgid "Product List"
720
  msgstr ""
721
 
722
+ #: ../admin/class-is-editor.php:1040
723
  msgid "All Product"
724
  msgstr ""
725
 
726
+ #: ../admin/class-is-editor.php:1041
727
  msgid "Featured Products"
728
  msgstr ""
729
 
730
+ #: ../admin/class-is-editor.php:1042
731
  msgid "On-sale Products</option>"
732
  msgstr ""
733
 
734
+ #: ../admin/class-is-editor.php:1049
735
  msgid "Order by"
736
  msgstr ""
737
 
738
+ #: ../admin/class-is-editor.php:1054
739
  msgid "Random"
740
  msgstr ""
741
 
742
+ #: ../admin/class-is-editor.php:1055
743
  msgid "Sales"
744
  msgstr ""
745
 
746
+ #: ../admin/class-is-editor.php:1062
747
  msgid "Order"
748
  msgstr ""
749
 
750
+ #: ../admin/class-is-editor.php:1065
751
  msgid "ASC"
752
  msgstr ""
753
 
754
+ #: ../admin/class-is-editor.php:1066
755
  msgid "DESC"
756
  msgstr ""
757
 
758
+ #: ../admin/class-is-editor.php:1083
759
  msgid ""
760
  "Use below customizer to customize AJAX search results color and loader image."
761
  msgstr ""
762
 
763
+ #: ../admin/class-is-editor.php:1091
764
  msgid "AJAX Search Customizer"
765
  msgstr ""
766
 
767
+ #: ../admin/class-is-editor.php:1110
768
  msgid "This search form excludes the below configured content from search."
769
  msgstr ""
770
 
771
+ #: ../admin/class-is-editor.php:1199
772
  #, php-format
773
  msgid ""
774
  "The search form is configured in the %s section to only search specific "
775
  "posts of another post type."
776
  msgstr ""
777
 
778
+ #: ../admin/class-is-editor.php:1204
779
  #, php-format
780
  msgid "Do not exclude any %s from search"
781
  msgstr ""
782
 
783
+ #: ../admin/class-is-editor.php:1206
784
  #, php-format
785
  msgid "Exclude selected %s from search"
786
  msgstr ""
787
 
788
+ #: ../admin/class-is-editor.php:1209
789
  #, php-format
790
  msgid ""
791
+ "The search form is configured in the %1$s section to only search specific "
792
+ "%2$s."
793
  msgstr ""
794
 
795
+ #: ../admin/class-is-editor.php:1245
796
  #, php-format
797
  msgid ""
798
  "Do not exclude any %s from search of any taxonomies (%s categories, tags & "
799
  "terms %s)"
800
  msgstr ""
801
 
802
+ #: ../admin/class-is-editor.php:1247
803
  #, php-format
804
  msgid ""
805
  "Exclude %s from search of selected taxonomies (%s categories, tags & terms "
806
  "%s)"
807
  msgstr ""
808
 
809
+ #: ../admin/class-is-editor.php:1271
810
  #, php-format
811
  msgid "Exclude %s from search having selected custom fields"
812
  msgstr ""
813
 
814
+ #: ../admin/class-is-editor.php:1283
815
  msgid "Exclude 'Out of Stock' products from search"
816
  msgstr ""
817
 
818
+ #: ../admin/class-is-editor.php:1313
819
  msgid "Excluded File Types :"
820
  msgstr ""
821
 
822
+ #: ../admin/class-is-editor.php:1323
823
  msgid "Exclude selected MIME types from search"
824
  msgstr ""
825
 
826
+ #: ../admin/class-is-editor.php:1327
827
  msgid "Exclude Images"
828
  msgstr ""
829
 
830
+ #: ../admin/class-is-editor.php:1329
831
  msgid "Exclude Videos"
832
  msgstr ""
833
 
834
+ #: ../admin/class-is-editor.php:1331
835
  msgid "Exclude Audios"
836
  msgstr ""
837
 
838
+ #: ../admin/class-is-editor.php:1333
839
  msgid "Exclude Text Files"
840
  msgstr ""
841
 
842
+ #: ../admin/class-is-editor.php:1335
843
  msgid "Exclude PDF Files"
844
  msgstr ""
845
 
846
+ #: ../admin/class-is-editor.php:1337
847
  msgid "Exclude Document Files"
848
  msgstr ""
849
 
850
+ #: ../admin/class-is-editor.php:1344
851
  #, php-format
852
  msgid ""
853
  "This search form is configured in the %s section to search specific "
854
  "attachments."
855
  msgstr ""
856
 
857
+ #: ../admin/class-is-editor.php:1361
858
  msgid "Exclude posts from search created by selected authors."
859
  msgstr ""
860
 
861
+ #: ../admin/class-is-editor.php:1380 ../admin/class-is-editor.php:1382
862
  msgid "Search all author posts"
863
  msgstr ""
864
 
865
+ #: ../admin/class-is-editor.php:1410
866
  #, php-format
867
  msgid ""
868
  "This search form is configured in the %s section to search posts created by "
869
  "specific authors."
870
  msgstr ""
871
 
872
+ #: ../admin/class-is-editor.php:1422
873
  msgid "Exclude posts from search having selected post statuses."
874
  msgstr ""
875
 
876
+ #: ../admin/class-is-editor.php:1427
877
  msgid "Exclude sticky posts from search"
878
  msgstr ""
879
 
880
+ #: ../admin/class-is-editor.php:1441
881
  msgid "Configure below options to manage functionality of this search form."
882
  msgstr ""
883
 
884
+ #: ../admin/class-is-editor.php:1448
885
  msgid "Posts Per Page"
886
  msgstr ""
887
 
888
+ #: ../admin/class-is-editor.php:1452
889
  msgid "Display selected number of posts on search results page."
890
  msgstr ""
891
 
892
+ #: ../admin/class-is-editor.php:1469
893
  msgid "Order Search Results"
894
  msgstr ""
895
 
896
+ #: ../admin/class-is-editor.php:1472
897
  msgid "Display posts on search results page ordered by selected options."
898
  msgstr ""
899
 
900
+ #: ../admin/class-is-editor.php:1497
901
  msgid "Highlight Search Terms"
902
  msgstr ""
903
 
904
+ #: ../admin/class-is-editor.php:1503
905
  msgid "Highlight searched terms on search results page"
906
  msgstr ""
907
 
908
+ #: ../admin/class-is-editor.php:1506
909
  msgid "Select text highlight color"
910
  msgstr ""
911
 
912
+ #: ../admin/class-is-editor.php:1512
913
  msgid "Search All Or Any Search Terms"
914
  msgstr ""
915
 
916
+ #: ../admin/class-is-editor.php:1516
917
  msgid ""
918
  "Select whether to search posts having all or any of the words being searched."
919
  msgstr ""
920
 
921
+ #: ../admin/class-is-editor.php:1521
922
  msgid "OR - Display content having any of the search terms"
923
  msgstr ""
924
 
925
+ #: ../admin/class-is-editor.php:1523
926
  msgid "AND - Display content having all the search terms"
927
  msgstr ""
928
 
929
+ #: ../admin/class-is-editor.php:1529
930
  msgid "Fuzzy Matching"
931
  msgstr ""
932
 
933
+ #: ../admin/class-is-editor.php:1532
934
  msgid ""
935
  "Select whether to search posts having whole or partial word being searched."
936
  msgstr ""
937
 
938
+ #: ../admin/class-is-editor.php:1537
939
  msgid "Whole - Search posts that include the whole search term"
940
  msgstr ""
941
 
942
+ #: ../admin/class-is-editor.php:1539
943
  msgid ""
944
  "Partial - Also search words in the posts that begins or ends with the search "
945
  "term"
946
  msgstr ""
947
 
948
+ #: ../admin/class-is-editor.php:1545
949
  msgid "Keyword Stemming"
950
  msgstr ""
951
 
952
+ #: ../admin/class-is-editor.php:1549
953
  msgid "Select whether to search the base word of a searched keyword."
954
  msgstr ""
955
 
956
+ #: ../admin/class-is-editor.php:1550
957
  msgid ""
958
  "For Example: If you search \"doing\" then it also searches base word of "
959
  "\"doing\" that is \"do\" in the specified post types."
960
  msgstr ""
961
 
962
+ #: ../admin/class-is-editor.php:1551
963
  msgid "Not recommended to use when Fuzzy Matching option is set to Whole."
964
  msgstr ""
965
 
966
+ #: ../admin/class-is-editor.php:1557
967
  msgid "Also search base word of searched keyword"
968
  msgstr ""
969
 
970
+ #: ../admin/class-is-editor.php:1570
971
  msgid "Display sticky posts to the start of the search results page"
972
  msgstr ""
973
 
974
+ #: ../admin/class-is-editor.php:1574
975
  msgid "Display search form only for site administrator"
976
  msgstr ""
977
 
978
+ #: ../admin/class-is-editor.php:1578
979
  msgid "Disable this search form"
980
  msgstr ""
981
 
982
+ #: ../admin/class-is-editor.php:1581
983
  msgid ""
984
  "Select whether to display an error when user perform search without any "
985
  "search word."
986
  msgstr ""
987
 
988
+ #: ../admin/class-is-editor.php:1585
989
  msgid "Display an error for empty search query"
990
  msgstr ""
991
 
1500
 
1501
  #: ../includes/class-is-admin-public.php:177
1502
  #: ../includes/class-is-search-form.php:451
1503
+ #: ../includes/class-is-search-form.php:500 ../public/class-is-public.php:176
1504
+ #: ../public/class-is-public.php:225
1505
  msgid "Search"
1506
  msgstr ""
1507
 
public/class-is-public.php CHANGED
@@ -194,7 +194,8 @@ class IS_Public
194
  $temp .= '<li class="' . esc_attr( $search_class ) . ' menu-item">';
195
 
196
  if ( !isset( $this->opt['menu_style'] ) || $this->opt['menu_style'] != 'default' ) {
197
- $temp .= '<a title="' . esc_attr( $title ) . '" href="#">';
 
198
 
199
  if ( '' == $title ) {
200
  $temp .= '<svg width="20" height="20" class="search-icon" role="img" viewBox="2 9 20 5" focusable="false" aria-label="' . __( "Search", "ivory-search" ) . '">
@@ -246,7 +247,8 @@ class IS_Public
246
  $items .= '<span class="' . esc_attr( $search_class ) . '">';
247
 
248
  if ( !isset( $this->opt['menu_style'] ) || $this->opt['menu_style'] != 'default' ) {
249
- $items .= '<a title="' . esc_attr( $title ) . '" href="#">';
 
250
 
251
  if ( '' == $title ) {
252
  $items .= '<svg width="20" height="20" class="search-icon" role="img" viewBox="2 9 20 5" focusable="false" aria-label="' . __( "Search", "ivory-search" ) . '">
194
  $temp .= '<li class="' . esc_attr( $search_class ) . ' menu-item">';
195
 
196
  if ( !isset( $this->opt['menu_style'] ) || $this->opt['menu_style'] != 'default' ) {
197
+ $link_title = ( apply_filters( 'is_show_menu_link_title', true ) ? 'title="' . esc_attr( $title ) . '"' : '' );
198
+ $temp .= '<a ' . $link_title . ' href="#">';
199
 
200
  if ( '' == $title ) {
201
  $temp .= '<svg width="20" height="20" class="search-icon" role="img" viewBox="2 9 20 5" focusable="false" aria-label="' . __( "Search", "ivory-search" ) . '">
247
  $items .= '<span class="' . esc_attr( $search_class ) . '">';
248
 
249
  if ( !isset( $this->opt['menu_style'] ) || $this->opt['menu_style'] != 'default' ) {
250
+ $link_title = ( apply_filters( 'is_show_menu_link_title', true ) ? 'title="' . esc_attr( $title ) . '"' : '' );
251
+ $items .= '<a ' . $link_title . ' href="#">';
252
 
253
  if ( '' == $title ) {
254
  $items .= '<svg width="20" height="20" class="search-icon" role="img" viewBox="2 9 20 5" focusable="false" aria-label="' . __( "Search", "ivory-search" ) . '">
public/js/ivory-search.js CHANGED
@@ -35,7 +35,7 @@
35
  $( '#is-popup-wrapper form input[type="text"], #is-popup-wrapper form input[type="search"]' ).focus();
36
  }
37
 
38
- $( '.is-menu form input[type="search"], .is-menu form input[type="text"]' ).focus();
39
  } );
40
 
41
  $( '#is-popup-wrapper' ).on( 'click', function( e ) {
35
  $( '#is-popup-wrapper form input[type="text"], #is-popup-wrapper form input[type="search"]' ).focus();
36
  }
37
 
38
+ $(this).closest('.is-menu').find( 'form input[type="search"], form input[type="text"]' ).focus();
39
  } );
40
 
41
  $( '#is-popup-wrapper' ).on( 'click', function( e ) {
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.4
7
  Requires PHP: 5.2.4
8
- Stable tag: 4.4.13
9
  License: GPLv2 or later
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -192,6 +192,10 @@ Yes we do. We try our best to help free users with customisation requests and we
192
 
193
  == Changelog ==
194
 
 
 
 
 
195
  = 4.4.13 =
196
  * Added - Option to display search form on menu along with menu locations.
197
  * Added - Highlight search terms in AJAX search results.
5
  Requires at least: 3.9
6
  Tested up to: 5.4
7
  Requires PHP: 5.2.4
8
+ Stable tag: 4.4.14
9
  License: GPLv2 or later
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
 
192
 
193
  == Changelog ==
194
 
195
+ = 4.4.14 =
196
+ * Fixed - Page was scrolling to bottom clicking on menu search icon.
197
+ * Added - is_show_menu_link_title filter to remove menu search link title.
198
+
199
  = 4.4.13 =
200
  * Added - Option to display search form on menu along with menu locations.
201
  * Added - Highlight search terms in AJAX search results.