Ivory Search – WordPress Search Plugin - Version 4.3.3

Version Description

  • Fixed - header already sent issue displayed in the search forms admin page.
  • Fixed - Default style menu search form width issue.
  • Made Free - Menu search form Popup style.
  • Removed - "Disable synonyms for the search forms configured to search all search terms" option.
Download this release

Release Info

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

Code changes from version 4.3.2 to 4.3.3

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.3.2
7
  * Author: Ivory Search
8
  * Author URI: https://ivorysearch.com/
9
  * License: GPL2+
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.3.3
7
  * Author: Ivory Search
8
  * Author URI: https://ivorysearch.com/
9
  * License: GPL2+
admin/class-is-admin.php CHANGED
@@ -349,6 +349,8 @@ class IS_Admin
349
  */
350
  function admin_init()
351
  {
 
 
352
 
353
  if ( isset( $_GET['is_dismiss'] ) && '' !== $_GET['is_dismiss'] ) {
354
  $is_notices = get_option( 'is_notices', array() );
349
  */
350
  function admin_init()
351
  {
352
+ /* Added to fix header already sent issue */
353
+ ob_start();
354
 
355
  if ( isset( $_GET['is_dismiss'] ) && '' !== $_GET['is_dismiss'] ) {
356
  $is_notices = get_option( 'is_notices', array() );
admin/class-is-editor.php CHANGED
@@ -162,11 +162,7 @@ class IS_Search_Editor
162
  ?>-post__in"><?php
163
  echo esc_html( __( 'Posts, Pages & Custom Posts', 'ivory-search' ) ) ;
164
  ?></label>
165
- <span class="actions"><a class="expand" href="#"><?php
166
- esc_html_e( 'Expand All', 'ivory-search' );
167
- ?></a><a class="collapse" href="#" style="display:none;"><?php
168
- esc_html_e( 'Collapse All', 'ivory-search' );
169
- ?></a></span></h3>
170
  <div>
171
  <?php
172
  $content = __( 'Search only selected posts.', 'ivory-search' );
@@ -228,11 +224,7 @@ class IS_Search_Editor
228
  ?>-tax_query"><?php
229
  esc_html_e( 'Category & Taxonomy Terms', 'ivory-search' );
230
  ?></label>
231
- <span class="actions"><a class="expand" href="#"><?php
232
- esc_html_e( 'Expand All', 'ivory-search' );
233
- ?></a><a class="collapse" href="#" style="display:none;"><?php
234
- esc_html_e( 'Collapse All', 'ivory-search' );
235
- ?></a></span></h3>
236
  <div>
237
  <?php
238
  $content = __( 'Search posts of only selected categories, taxonomies & terms.', 'ivory-search' );
@@ -289,11 +281,7 @@ class IS_Search_Editor
289
  ?>-custom_field"><?php
290
  echo esc_html( __( 'Custom Fields & Metadata', 'ivory-search' ) ) ;
291
  ?></label>
292
- <span class="actions"><a class="expand" href="#"><?php
293
- esc_html_e( 'Expand All', 'ivory-search' );
294
- ?></a><a class="collapse" href="#" style="display:none;"><?php
295
- esc_html_e( 'Collapse All', 'ivory-search' );
296
- ?></a></span></h3>
297
  <div>
298
  <?php
299
  $content = __( 'Search values of selected custom fields.', 'ivory-search' );
@@ -332,11 +320,7 @@ class IS_Search_Editor
332
  ?>-woocommerce"><?php
333
  echo esc_html( __( 'WooCommerce', 'ivory-search' ) ) ;
334
  ?></label>
335
- <span class="actions"><a class="expand" href="#"><?php
336
- esc_html_e( 'Expand All', 'ivory-search' );
337
- ?></a><a class="collapse" href="#" style="display:none;"><?php
338
- esc_html_e( 'Collapse All', 'ivory-search' );
339
- ?></a></span></h3>
340
  <div>
341
  <?php
342
  $content = __( 'Search WooCommerce products.', 'ivory-search' );
@@ -372,11 +356,7 @@ class IS_Search_Editor
372
  ?>-author"><?php
373
  echo esc_html( __( 'Authors', 'ivory-search' ) ) ;
374
  ?></label>
375
- <span class="actions"><a class="expand" href="#"><?php
376
- esc_html_e( 'Expand All', 'ivory-search' );
377
- ?></a><a class="collapse" href="#" style="display:none;"><?php
378
- esc_html_e( 'Collapse All', 'ivory-search' );
379
- ?></a></span></h3>
380
  <div>
381
  <?php
382
  $content = __( 'Search posts of selected authors.', 'ivory-search' );
@@ -427,11 +407,7 @@ class IS_Search_Editor
427
  ?>-post_status"><?php
428
  echo esc_html( __( 'Post Status', 'ivory-search' ) ) ;
429
  ?></label>
430
- <span class="actions"><a class="expand" href="#"><?php
431
- esc_html_e( 'Expand All', 'ivory-search' );
432
- ?></a><a class="collapse" href="#" style="display:none;"><?php
433
- esc_html_e( 'Collapse All', 'ivory-search' );
434
- ?></a></span></h3>
435
  <div>
436
  <?php
437
  $content = __( 'Search posts having selected post statuses.', 'ivory-search' );
@@ -467,11 +443,7 @@ class IS_Search_Editor
467
  ?>-comment_count"><?php
468
  echo esc_html( __( 'Comments', 'ivory-search' ) ) ;
469
  ?></label>
470
- <span class="actions"><a class="expand" href="#"><?php
471
- esc_html_e( 'Expand All', 'ivory-search' );
472
- ?></a><a class="collapse" href="#" style="display:none;"><?php
473
- esc_html_e( 'Collapse All', 'ivory-search' );
474
- ?></a></span></h3>
475
  <div>
476
  <?php
477
  $content = __( 'Search posts by comments.', 'ivory-search' );
@@ -518,11 +490,7 @@ class IS_Search_Editor
518
  ?>-date_query"><?php
519
  echo esc_html( __( 'Date', 'ivory-search' ) ) ;
520
  ?></label>
521
- <span class="actions"><a class="expand" href="#"><?php
522
- esc_html_e( 'Expand All', 'ivory-search' );
523
- ?></a><a class="collapse" href="#" style="display:none;"><?php
524
- esc_html_e( 'Collapse All', 'ivory-search' );
525
- ?></a></span></h3>
526
  <div>
527
  <?php
528
  $content = __( 'Search posts created in the specified date range.', 'ivory-search' );
@@ -570,11 +538,7 @@ class IS_Search_Editor
570
  ?>-has_password"><?php
571
  echo esc_html( __( 'Password Protected', 'ivory-search' ) ) ;
572
  ?></label>
573
- <span class="actions"><a class="expand" href="#"><?php
574
- esc_html_e( 'Expand All', 'ivory-search' );
575
- ?></a><a class="collapse" href="#" style="display:none;"><?php
576
- esc_html_e( 'Collapse All', 'ivory-search' );
577
- ?></a></span></h3>
578
  <div>
579
  <?php
580
  echo '<div>' ;
@@ -1261,14 +1225,6 @@ class IS_Search_Editor
1261
  ?>-search-form-woocommerce"><?php
1262
  esc_html_e( 'WooCommerce', 'ivory-search' );
1263
  ?></label>
1264
- <span class="actions">
1265
- <a class="expand" href="#"><?php
1266
- esc_html_e( 'Expand All', 'ivory-search' );
1267
- ?></a>
1268
- <a class="collapse" href="#" style="display:none;"><?php
1269
- esc_html_e( 'Collapse All', 'ivory-search' );
1270
- ?></a>
1271
- </span>
1272
  </h3>
1273
  <div class="is-field-wrap <?php
1274
  echo $field_class ;
@@ -1775,11 +1731,7 @@ class IS_Search_Editor
1775
  ?>-tax_query"><?php
1776
  esc_html_e( 'Category & Taxonomy Terms', 'ivory-search' );
1777
  ?></label>
1778
- <span class="actions"><a class="expand" href="#"><?php
1779
- esc_html_e( 'Expand All', 'ivory-search' );
1780
- ?></a><a class="collapse" href="#" style="display:none;"><?php
1781
- esc_html_e( 'Collapse All', 'ivory-search' );
1782
- ?></a></span></h3>
1783
  <div>
1784
  <?php
1785
  $content = __( 'Exclude posts of selected categories, taxonomies & terms from search.', 'ivory-search' );
@@ -1824,11 +1776,7 @@ class IS_Search_Editor
1824
  ?>-custom_field"><?php
1825
  echo esc_html( __( 'Custom Fields & Metadata', 'ivory-search' ) ) ;
1826
  ?></label>
1827
- <span class="actions"><a class="expand" href="#"><?php
1828
- esc_html_e( 'Expand All', 'ivory-search' );
1829
- ?></a><a class="collapse" href="#" style="display:none;"><?php
1830
- esc_html_e( 'Collapse All', 'ivory-search' );
1831
- ?></a></span></h3>
1832
  <div>
1833
  <?php
1834
  $content = __( 'Exclude posts having selected custom fields from search.', 'ivory-search' );
@@ -1869,11 +1817,7 @@ class IS_Search_Editor
1869
  ?>-woocommerce"><?php
1870
  echo esc_html( __( 'WooCommerce', 'ivory-search' ) ) ;
1871
  ?></label>
1872
- <span class="actions"><a class="expand" href="#"><?php
1873
- esc_html_e( 'Expand All', 'ivory-search' );
1874
- ?></a><a class="collapse" href="#" style="display:none;"><?php
1875
- esc_html_e( 'Collapse All', 'ivory-search' );
1876
- ?></a></span></h3>
1877
  <div>
1878
  <?php
1879
  $content = __( 'Exclude selected WooCommerce products from search.', 'ivory-search' );
@@ -1906,11 +1850,7 @@ class IS_Search_Editor
1906
  ?>-author"><?php
1907
  echo esc_html( __( 'Authors', 'ivory-search' ) ) ;
1908
  ?></label>
1909
- <span class="actions"><a class="expand" href="#"><?php
1910
- esc_html_e( 'Expand All', 'ivory-search' );
1911
- ?></a><a class="collapse" href="#" style="display:none;"><?php
1912
- esc_html_e( 'Collapse All', 'ivory-search' );
1913
- ?></a></span></h3>
1914
  <div>
1915
  <?php
1916
  $content = __( 'Exclude posts created by selected authors from search.', 'ivory-search' );
@@ -1956,11 +1896,7 @@ class IS_Search_Editor
1956
  ?>-post_status"><?php
1957
  echo esc_html( __( 'Post Status', 'ivory-search' ) ) ;
1958
  ?></label>
1959
- <span class="actions"><a class="expand" href="#"><?php
1960
- esc_html_e( 'Expand All', 'ivory-search' );
1961
- ?></a><a class="collapse" href="#" style="display:none;"><?php
1962
- esc_html_e( 'Collapse All', 'ivory-search' );
1963
- ?></a></span></h3>
1964
  <div>
1965
  <?php
1966
  $content = __( 'Exclude posts having selected post statuses from search.', 'ivory-search' );
@@ -2109,11 +2045,7 @@ class IS_Search_Editor
2109
  ?>-order"><?php
2110
  echo esc_html( __( 'Order Search Results', 'ivory-search' ) ) ;
2111
  ?></label>
2112
- <span class="actions"><a class="expand" href="#"><?php
2113
- esc_html_e( 'Expand All', 'ivory-search' );
2114
- ?></a><a class="collapse" href="#" style="display:none;"><?php
2115
- esc_html_e( 'Collapse All', 'ivory-search' );
2116
- ?></a></span></h3>
2117
  <div><?php
2118
  $content = __( 'Display posts on search results page ordered by selected options.', 'ivory-search' );
2119
  IS_Help::help_info( $content );
@@ -2162,11 +2094,7 @@ class IS_Search_Editor
2162
  ?>-highlight_terms"><?php
2163
  echo esc_html( __( 'Highlight Search Terms', 'ivory-search' ) ) ;
2164
  ?></label>
2165
- <span class="actions"><a class="expand" href="#"><?php
2166
- esc_html_e( 'Expand All', 'ivory-search' );
2167
- ?></a><a class="collapse" href="#" style="display:none;"><?php
2168
- esc_html_e( 'Collapse All', 'ivory-search' );
2169
- ?></a></span></h3>
2170
  <div><div>
2171
  <?php
2172
  $checked = ( isset( $settings['highlight_terms'] ) && $settings['highlight_terms'] ? 1 : 0 );
@@ -2185,11 +2113,7 @@ class IS_Search_Editor
2185
  ?>-term_rel"><?php
2186
  echo esc_html( __( 'Search All Or Any Search Terms', 'ivory-search' ) ) ;
2187
  ?></label>
2188
- <span class="actions"><a class="expand" href="#"><?php
2189
- esc_html_e( 'Expand All', 'ivory-search' );
2190
- ?></a><a class="collapse" href="#" style="display:none;"><?php
2191
- esc_html_e( 'Collapse All', 'ivory-search' );
2192
- ?></a></span></h3>
2193
  <div>
2194
  <?php
2195
  $content = __( 'Select whether to search posts having all or any of the words being searched.', 'ivory-search' );
@@ -2211,11 +2135,7 @@ class IS_Search_Editor
2211
  ?>-fuzzy_match"><?php
2212
  echo esc_html( __( 'Fuzzy Matching', 'ivory-search' ) ) ;
2213
  ?></label>
2214
- <span class="actions"><a class="expand" href="#"><?php
2215
- esc_html_e( 'Expand All', 'ivory-search' );
2216
- ?></a><a class="collapse" href="#" style="display:none;"><?php
2217
- esc_html_e( 'Collapse All', 'ivory-search' );
2218
- ?></a></span></h3>
2219
  <div><?php
2220
  $content = __( 'Select whether to search posts having whole or partial word being searched.', 'ivory-search' );
2221
  IS_Help::help_info( $content );
@@ -2235,11 +2155,7 @@ class IS_Search_Editor
2235
  ?>-keyword_stem"><?php
2236
  echo esc_html( __( 'Keyword Stemming', 'ivory-search' ) ) ;
2237
  ?></label>
2238
- <span class="actions"><a class="expand" href="#"><?php
2239
- esc_html_e( 'Expand All', 'ivory-search' );
2240
- ?></a><a class="collapse" href="#" style="display:none;"><?php
2241
- esc_html_e( 'Collapse All', 'ivory-search' );
2242
- ?></a></span></h3>
2243
  <div>
2244
  <?php
2245
  $content = __( 'Select whether to search the base word of a searched keyword.', 'ivory-search' );
@@ -2262,11 +2178,7 @@ class IS_Search_Editor
2262
  ?>-move_sticky_posts"><?php
2263
  echo esc_html( __( 'Sticky Posts', 'ivory-search' ) ) ;
2264
  ?></label>
2265
- <span class="actions"><a class="expand" href="#"><?php
2266
- esc_html_e( 'Expand All', 'ivory-search' );
2267
- ?></a><a class="collapse" href="#" style="display:none;"><?php
2268
- esc_html_e( 'Collapse All', 'ivory-search' );
2269
- ?></a></span></h3>
2270
  <div><div>
2271
  <?php
2272
  $checked = ( isset( $settings['move_sticky_posts'] ) && $settings['move_sticky_posts'] ? 1 : 0 );
@@ -2282,11 +2194,7 @@ class IS_Search_Editor
2282
  ?>-empty_search"><?php
2283
  echo esc_html( __( 'Empty Search Query', 'ivory-search' ) ) ;
2284
  ?></label>
2285
- <span class="actions"><a class="expand" href="#"><?php
2286
- esc_html_e( 'Expand All', 'ivory-search' );
2287
- ?></a><a class="collapse" href="#" style="display:none;"><?php
2288
- esc_html_e( 'Collapse All', 'ivory-search' );
2289
- ?></a></span></h3>
2290
  <div><?php
2291
  $content = __( 'Select whether to display an error when user perform search without any search word.', 'ivory-search' );
2292
  IS_Help::help_info( $content );
@@ -2303,11 +2211,7 @@ class IS_Search_Editor
2303
  ?>-demo"><?php
2304
  echo esc_html( __( 'Demo Search', 'ivory-search' ) ) ;
2305
  ?></label>
2306
- <span class="actions"><a class="expand" href="#"><?php
2307
- esc_html_e( 'Expand All', 'ivory-search' );
2308
- ?></a><a class="collapse" href="#" style="display:none;"><?php
2309
- esc_html_e( 'Collapse All', 'ivory-search' );
2310
- ?></a></span></h3>
2311
  <div><div>
2312
  <?php
2313
  $checked = ( isset( $settings['demo'] ) && $settings['demo'] ? 1 : 0 );
162
  ?>-post__in"><?php
163
  echo esc_html( __( 'Posts, Pages & Custom Posts', 'ivory-search' ) ) ;
164
  ?></label>
165
+ </h3>
 
 
 
 
166
  <div>
167
  <?php
168
  $content = __( 'Search only selected posts.', 'ivory-search' );
224
  ?>-tax_query"><?php
225
  esc_html_e( 'Category & Taxonomy Terms', 'ivory-search' );
226
  ?></label>
227
+ </h3>
 
 
 
 
228
  <div>
229
  <?php
230
  $content = __( 'Search posts of only selected categories, taxonomies & terms.', 'ivory-search' );
281
  ?>-custom_field"><?php
282
  echo esc_html( __( 'Custom Fields & Metadata', 'ivory-search' ) ) ;
283
  ?></label>
284
+ </h3>
 
 
 
 
285
  <div>
286
  <?php
287
  $content = __( 'Search values of selected custom fields.', 'ivory-search' );
320
  ?>-woocommerce"><?php
321
  echo esc_html( __( 'WooCommerce', 'ivory-search' ) ) ;
322
  ?></label>
323
+ </h3>
 
 
 
 
324
  <div>
325
  <?php
326
  $content = __( 'Search WooCommerce products.', 'ivory-search' );
356
  ?>-author"><?php
357
  echo esc_html( __( 'Authors', 'ivory-search' ) ) ;
358
  ?></label>
359
+ </h3>
 
 
 
 
360
  <div>
361
  <?php
362
  $content = __( 'Search posts of selected authors.', 'ivory-search' );
407
  ?>-post_status"><?php
408
  echo esc_html( __( 'Post Status', 'ivory-search' ) ) ;
409
  ?></label>
410
+ </h3>
 
 
 
 
411
  <div>
412
  <?php
413
  $content = __( 'Search posts having selected post statuses.', 'ivory-search' );
443
  ?>-comment_count"><?php
444
  echo esc_html( __( 'Comments', 'ivory-search' ) ) ;
445
  ?></label>
446
+ </h3>
 
 
 
 
447
  <div>
448
  <?php
449
  $content = __( 'Search posts by comments.', 'ivory-search' );
490
  ?>-date_query"><?php
491
  echo esc_html( __( 'Date', 'ivory-search' ) ) ;
492
  ?></label>
493
+ </h3>
 
 
 
 
494
  <div>
495
  <?php
496
  $content = __( 'Search posts created in the specified date range.', 'ivory-search' );
538
  ?>-has_password"><?php
539
  echo esc_html( __( 'Password Protected', 'ivory-search' ) ) ;
540
  ?></label>
541
+ </h3>
 
 
 
 
542
  <div>
543
  <?php
544
  echo '<div>' ;
1225
  ?>-search-form-woocommerce"><?php
1226
  esc_html_e( 'WooCommerce', 'ivory-search' );
1227
  ?></label>
 
 
 
 
 
 
 
 
1228
  </h3>
1229
  <div class="is-field-wrap <?php
1230
  echo $field_class ;
1731
  ?>-tax_query"><?php
1732
  esc_html_e( 'Category & Taxonomy Terms', 'ivory-search' );
1733
  ?></label>
1734
+ </h3>
 
 
 
 
1735
  <div>
1736
  <?php
1737
  $content = __( 'Exclude posts of selected categories, taxonomies & terms from search.', 'ivory-search' );
1776
  ?>-custom_field"><?php
1777
  echo esc_html( __( 'Custom Fields & Metadata', 'ivory-search' ) ) ;
1778
  ?></label>
1779
+ </h3>
 
 
 
 
1780
  <div>
1781
  <?php
1782
  $content = __( 'Exclude posts having selected custom fields from search.', 'ivory-search' );
1817
  ?>-woocommerce"><?php
1818
  echo esc_html( __( 'WooCommerce', 'ivory-search' ) ) ;
1819
  ?></label>
1820
+ </h3>
 
 
 
 
1821
  <div>
1822
  <?php
1823
  $content = __( 'Exclude selected WooCommerce products from search.', 'ivory-search' );
1850
  ?>-author"><?php
1851
  echo esc_html( __( 'Authors', 'ivory-search' ) ) ;
1852
  ?></label>
1853
+ </h3>
 
 
 
 
1854
  <div>
1855
  <?php
1856
  $content = __( 'Exclude posts created by selected authors from search.', 'ivory-search' );
1896
  ?>-post_status"><?php
1897
  echo esc_html( __( 'Post Status', 'ivory-search' ) ) ;
1898
  ?></label>
1899
+ </h3>
 
 
 
 
1900
  <div>
1901
  <?php
1902
  $content = __( 'Exclude posts having selected post statuses from search.', 'ivory-search' );
2045
  ?>-order"><?php
2046
  echo esc_html( __( 'Order Search Results', 'ivory-search' ) ) ;
2047
  ?></label>
2048
+ </h3>
 
 
 
 
2049
  <div><?php
2050
  $content = __( 'Display posts on search results page ordered by selected options.', 'ivory-search' );
2051
  IS_Help::help_info( $content );
2094
  ?>-highlight_terms"><?php
2095
  echo esc_html( __( 'Highlight Search Terms', 'ivory-search' ) ) ;
2096
  ?></label>
2097
+ </h3>
 
 
 
 
2098
  <div><div>
2099
  <?php
2100
  $checked = ( isset( $settings['highlight_terms'] ) && $settings['highlight_terms'] ? 1 : 0 );
2113
  ?>-term_rel"><?php
2114
  echo esc_html( __( 'Search All Or Any Search Terms', 'ivory-search' ) ) ;
2115
  ?></label>
2116
+ </h3>
 
 
 
 
2117
  <div>
2118
  <?php
2119
  $content = __( 'Select whether to search posts having all or any of the words being searched.', 'ivory-search' );
2135
  ?>-fuzzy_match"><?php
2136
  echo esc_html( __( 'Fuzzy Matching', 'ivory-search' ) ) ;
2137
  ?></label>
2138
+ </h3>
 
 
 
 
2139
  <div><?php
2140
  $content = __( 'Select whether to search posts having whole or partial word being searched.', 'ivory-search' );
2141
  IS_Help::help_info( $content );
2155
  ?>-keyword_stem"><?php
2156
  echo esc_html( __( 'Keyword Stemming', 'ivory-search' ) ) ;
2157
  ?></label>
2158
+ </h3>
 
 
 
 
2159
  <div>
2160
  <?php
2161
  $content = __( 'Select whether to search the base word of a searched keyword.', 'ivory-search' );
2178
  ?>-move_sticky_posts"><?php
2179
  echo esc_html( __( 'Sticky Posts', 'ivory-search' ) ) ;
2180
  ?></label>
2181
+ </h3>
 
 
 
 
2182
  <div><div>
2183
  <?php
2184
  $checked = ( isset( $settings['move_sticky_posts'] ) && $settings['move_sticky_posts'] ? 1 : 0 );
2194
  ?>-empty_search"><?php
2195
  echo esc_html( __( 'Empty Search Query', 'ivory-search' ) ) ;
2196
  ?></label>
2197
+ </h3>
 
 
 
 
2198
  <div><?php
2199
  $content = __( 'Select whether to display an error when user perform search without any search word.', 'ivory-search' );
2200
  IS_Help::help_info( $content );
2211
  ?>-demo"><?php
2212
  echo esc_html( __( 'Demo Search', 'ivory-search' ) ) ;
2213
  ?></label>
2214
+ </h3>
 
 
 
 
2215
  <div><div>
2216
  <?php
2217
  $checked = ( isset( $settings['demo'] ) && $settings['demo'] ? 1 : 0 );
admin/class-is-settings-fields.php CHANGED
@@ -105,7 +105,10 @@ class IS_Settings_Fields
105
  echo '<h3 scope="row">' . $field['title'] ;
106
  }
107
 
108
- echo '<span class="actions"><a class="expand" href="#">' . esc_html__( 'Expand All', 'ivory-search' ) . '</a><a class="collapse" href="#" style="display:none;">' . esc_html__( 'Collapse All', 'ivory-search' ) . '</a></span></h3><div>' ;
 
 
 
109
  call_user_func( $field['callback'], $field['args'] );
110
  echo '</div>' ;
111
  }
@@ -339,7 +342,7 @@ class IS_Settings_Fields
339
  $select_disable = ( $form_disable ? 'disabled' : '' );
340
  $html .= '<select class="ivory_search_form" ' . $select_disable . ' id="menu_search_form" name="is_menu_search[menu_search_form]" >';
341
  foreach ( $posts as $post ) {
342
- if ( 'default' === $check_value && 'Default Search Form' === $post->post_title ) {
343
  $check_value = $post->ID;
344
  }
345
  $html .= '<option value="' . $post->ID . '"' . selected( $post->ID, $check_value, false ) . ' >' . $post->post_title . '</option>';
@@ -374,7 +377,6 @@ class IS_Settings_Fields
374
  'full-width-menu' => __( 'Full Width', 'ivory-search' ),
375
  'popup' => __( 'Popup', 'ivory-search' ),
376
  );
377
- $popup_disable = ( is_fs()->is_plan_or_trial( 'pro' ) && $this->is_premium_plugin ? false : true );
378
  if ( empty($this->opt) || !isset( $this->opt['add_search_to_menu_style'] ) && !isset( $this->opt['menu_style'] ) ) {
379
  $this->opt['menu_style'] = 'default';
380
  }
@@ -382,15 +384,8 @@ class IS_Settings_Fields
382
  $check_value = ( isset( $this->opt['add_search_to_menu_style'] ) ? $this->opt['add_search_to_menu_style'] : 'default' );
383
  $check_value = ( isset( $this->opt['menu_style'] ) ? $this->opt['menu_style'] : $check_value );
384
  foreach ( $styles as $key => $style ) {
385
-
386
- if ( $popup_disable && 'popup' === $key ) {
387
- $html .= '<p class="upgrade-parent">' . IS_Admin::pro_link();
388
- } else {
389
- $html .= '<p>';
390
- }
391
-
392
  $html .= '<label for="is_menu_style' . esc_attr( $key ) . '"><input class="ivory_search_style" type="radio" id="is_menu_style' . esc_attr( $key ) . '" name="is_menu_search[menu_style]"';
393
- $html .= ( $popup_disable && 'popup' === $key ? ' disabled ' : '' );
394
  $html .= 'name="ivory_search[menu_style]" value="' . esc_attr( $key ) . '" ' . checked( $key, $check_value, false ) . '/>';
395
  $html .= '<span class="toggle-check-text"></span>' . esc_html( $style ) . '</label>';
396
  $html .= '</p>';
@@ -589,6 +584,7 @@ class IS_Settings_Fields
589
  {
590
  $content = __( 'Add synonyms here to make the searches find better results.', 'ivory-search' );
591
  $content .= '<br /><br />' . __( 'If you add bird = crow to the list of synonyms, searches for bird automatically become a search for bird crow and will thus match to posts that include either bird or crow.', 'ivory-search' );
 
592
  IS_Help::help_info( $content );
593
  $this->opt['synonyms'] = ( isset( $this->opt['synonyms'] ) ? $this->opt['synonyms'] : '' );
594
  $html = '<textarea class="ivory_search_synonyms" rows="4" id="synonyms" name="is_settings[synonyms]" >' . esc_attr( $this->opt['synonyms'] ) . '</textarea>';
@@ -596,21 +592,6 @@ class IS_Settings_Fields
596
  $html .= '<br /><label for="synonyms" style="font-size: 10px;">' . esc_html__( 'Please separate every synonyms key = value pairs with semicolon.', 'ivory-search' ) . '</label>';
597
  echo '<div>' . $html . '</div>' ;
598
  $html = '';
599
- $content = __( 'This only works for search forms configured to search any of the search terms(OR) and not all search terms(AND).', 'ivory-search' );
600
- IS_Help::help_info( $content );
601
- $synonyms_disable = ( is_fs()->is_plan_or_trial( 'pro' ) && $this->is_premium_plugin ? '' : ' disabled ' );
602
- $check_value = ( isset( $this->opt['synonyms_and'] ) ? $this->opt['synonyms_and'] : 0 );
603
- $disable = checked( 1, $check_value, false );
604
-
605
- if ( '' !== $synonyms_disable ) {
606
- $html .= '<p class="upgrade-parent">' . IS_Admin::pro_link();
607
- } else {
608
- $html .= '<p>';
609
- }
610
-
611
- $html .= '<label for="synonyms_and"><input class="ivory_search_synonyms" type="checkbox" ' . $synonyms_disable . ' id="synonyms_and" name="is_settings[synonyms_and]" value="1" ' . $disable . ' />';
612
- $html .= '<span class="toggle-check-text"></span>' . esc_html__( 'Disable synonyms for the search forms configured to search all search terms', 'ivory-search' ) . '</label></p>';
613
- echo '<div>' . $html . '</div>' ;
614
  }
615
 
616
  /**
105
  echo '<h3 scope="row">' . $field['title'] ;
106
  }
107
 
108
+ if ( 'Select Menu' == $field['title'] || 'Close Icon' == $field['title'] || 'Header Search' == $field['title'] || 'Default Search' == $field['title'] ) {
109
+ echo '<span class="actions"><a class="expand" href="#">' . esc_html__( 'Expand All', 'ivory-search' ) . '</a><a class="collapse" href="#" style="display:none;">' . esc_html__( 'Collapse All', 'ivory-search' ) . '</a></span>' ;
110
+ }
111
+ echo '</h3><div>' ;
112
  call_user_func( $field['callback'], $field['args'] );
113
  echo '</div>' ;
114
  }
342
  $select_disable = ( $form_disable ? 'disabled' : '' );
343
  $html .= '<select class="ivory_search_form" ' . $select_disable . ' id="menu_search_form" name="is_menu_search[menu_search_form]" >';
344
  foreach ( $posts as $post ) {
345
+ if ( ('default' === $check_value || $post->ID !== $check_value) && 'Default Search Form' === $post->post_title ) {
346
  $check_value = $post->ID;
347
  }
348
  $html .= '<option value="' . $post->ID . '"' . selected( $post->ID, $check_value, false ) . ' >' . $post->post_title . '</option>';
377
  'full-width-menu' => __( 'Full Width', 'ivory-search' ),
378
  'popup' => __( 'Popup', 'ivory-search' ),
379
  );
 
380
  if ( empty($this->opt) || !isset( $this->opt['add_search_to_menu_style'] ) && !isset( $this->opt['menu_style'] ) ) {
381
  $this->opt['menu_style'] = 'default';
382
  }
384
  $check_value = ( isset( $this->opt['add_search_to_menu_style'] ) ? $this->opt['add_search_to_menu_style'] : 'default' );
385
  $check_value = ( isset( $this->opt['menu_style'] ) ? $this->opt['menu_style'] : $check_value );
386
  foreach ( $styles as $key => $style ) {
387
+ $html .= '<p>';
 
 
 
 
 
 
388
  $html .= '<label for="is_menu_style' . esc_attr( $key ) . '"><input class="ivory_search_style" type="radio" id="is_menu_style' . esc_attr( $key ) . '" name="is_menu_search[menu_style]"';
 
389
  $html .= 'name="ivory_search[menu_style]" value="' . esc_attr( $key ) . '" ' . checked( $key, $check_value, false ) . '/>';
390
  $html .= '<span class="toggle-check-text"></span>' . esc_html( $style ) . '</label>';
391
  $html .= '</p>';
584
  {
585
  $content = __( 'Add synonyms here to make the searches find better results.', 'ivory-search' );
586
  $content .= '<br /><br />' . __( 'If you add bird = crow to the list of synonyms, searches for bird automatically become a search for bird crow and will thus match to posts that include either bird or crow.', 'ivory-search' );
587
+ $content .= '<br /><br />' . __( 'This only works for search forms configured to search any of the search terms(OR) and not all search terms(AND).', 'ivory-search' );
588
  IS_Help::help_info( $content );
589
  $this->opt['synonyms'] = ( isset( $this->opt['synonyms'] ) ? $this->opt['synonyms'] : '' );
590
  $html = '<textarea class="ivory_search_synonyms" rows="4" id="synonyms" name="is_settings[synonyms]" >' . esc_attr( $this->opt['synonyms'] ) . '</textarea>';
592
  $html .= '<br /><label for="synonyms" style="font-size: 10px;">' . esc_html__( 'Please separate every synonyms key = value pairs with semicolon.', 'ivory-search' ) . '</label>';
593
  echo '<div>' . $html . '</div>' ;
594
  $html = '';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
595
  }
596
 
597
  /**
admin/css/ivory-search-admin.css CHANGED
@@ -530,7 +530,7 @@ h4.panel-desc {
530
  margin: 0;
531
  }
532
 
533
- .form-table h3 .actions::after {
534
  font-family: dashicons;
535
  content: "\f345";
536
  color: #72777c;
@@ -540,7 +540,7 @@ h4.panel-desc {
540
  line-height: 1.5;
541
  }
542
 
543
- .form-table h3.ui-state-active .actions::after {
544
  content: "\f347";
545
  }
546
 
530
  margin: 0;
531
  }
532
 
533
+ .form-table h3.ui-accordion-header::before {
534
  font-family: dashicons;
535
  content: "\f345";
536
  color: #72777c;
540
  line-height: 1.5;
541
  }
542
 
543
+ .form-table h3.ui-state-active::before {
544
  content: "\f347";
545
  }
546
 
admin/js/ivory-search-admin.js CHANGED
@@ -96,7 +96,9 @@
96
  $( '#title' ).focus();
97
  }
98
 
99
- ivory_search.titleHint();
 
 
100
 
101
  var changed = false;
102
 
@@ -114,7 +116,7 @@
114
  }
115
  } else if ( $( this ).is( 'select' ) ) {
116
  $( this ).find( 'option' ).each( function() {
117
- if ( this.defaultSelected != $( this ).is( ':selected' ) ) {
118
  changed = true;
119
  }
120
  } );
96
  $( '#title' ).focus();
97
  }
98
 
99
+ if ( 0 !== $( '#title' ).length ) {
100
+ ivory_search.titleHint();
101
+ }
102
 
103
  var changed = false;
104
 
116
  }
117
  } else if ( $( this ).is( 'select' ) ) {
118
  $( this ).find( 'option' ).each( function() {
119
+ if ( this.defaultSelected != $( this ).is( ':selected' ) && '0' != $( this ).val() && 'Default Search Form' != $( this ).text() ) {
120
  changed = true;
121
  }
122
  } );
admin/partials/search-form.php CHANGED
@@ -77,7 +77,7 @@ if ( ! defined( 'ABSPATH' ) ) {
77
  'autocomplete' => 'off',
78
  'disabled' =>
79
  current_user_can( 'is_edit_search_form', $post_id ) && 'Default Search Form' !== $post->title() ? '' : 'disabled',
80
- 'title' => 'Default Search Form' !== $post->title() ? __( "Search form name", 'ivory-search' ) : __( "Editing the title of Default Search Form is prohibited.", 'ivory-search' ),
81
  );
82
 
83
  echo sprintf( '<input %s />', IS_Admin_Public::format_atts( $posttitle_atts ) );
77
  'autocomplete' => 'off',
78
  'disabled' =>
79
  current_user_can( 'is_edit_search_form', $post_id ) && 'Default Search Form' !== $post->title() ? '' : 'disabled',
80
+ 'title' => 'Default Search Form' !== $post->title() ? __( "Search form name", 'ivory-search' ) : __( "Editing the title of Default Search Form is restricted.", 'ivory-search' ),
81
  );
82
 
83
  echo sprintf( '<input %s />', IS_Admin_Public::format_atts( $posttitle_atts ) );
languages/default.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Ivory Search\n"
4
- "POT-Creation-Date: 2019-06-26 18:54+0530\n"
5
- "PO-Revision-Date: 2019-06-26 18:54+0530\n"
6
  "Last-Translator: \n"
7
  "Language-Team: Ivory Search <admin@ivorysearch.com>\n"
8
  "Language: en_US\n"
@@ -20,7 +20,7 @@ msgstr ""
20
  msgid "The changes you made will be lost if you navigate away from this page."
21
  msgstr ""
22
 
23
- #: ../admin/class-is-admin.php:136 ../admin/class-is-settings-fields.php:255
24
  #: ../admin/partials/search-form.php:23
25
  msgid "Edit Search Form"
26
  msgstr ""
@@ -33,7 +33,7 @@ msgstr ""
33
  msgid "Edit the Default Search Form to manage the default WordPress search."
34
  msgstr ""
35
 
36
- #: ../admin/class-is-admin.php:162 ../admin/class-is-admin.php:436
37
  #: ../admin/class-is-help.php:64
38
  msgid "Settings"
39
  msgstr ""
@@ -53,7 +53,7 @@ msgid ""
53
  "If you like %1$s please leave us a %2$s rating. A huge thanks in advance!"
54
  msgstr ""
55
 
56
- #: ../admin/class-is-admin.php:203 ../admin/class-is-admin.php:423
57
  #: ../includes/class-is-admin-public.php:106 ../includes/class-is-widget.php:13
58
  #: ../includes/class-is-widget.php:45
59
  msgid "Ivory Search"
@@ -98,98 +98,98 @@ msgstr ""
98
  msgid "No posts found"
99
  msgstr ""
100
 
101
- #: ../admin/class-is-admin.php:389
102
  msgid "Search form created."
103
  msgstr ""
104
 
105
- #: ../admin/class-is-admin.php:391
106
  msgid "Search form saved."
107
  msgstr ""
108
 
109
- #: ../admin/class-is-admin.php:393
110
  msgid "Search form deleted."
111
  msgstr ""
112
 
113
- #: ../admin/class-is-admin.php:395
114
  msgid "Search form reset."
115
  msgstr ""
116
 
117
- #: ../admin/class-is-admin.php:404
118
  msgid "There was an error saving the search form."
119
  msgstr ""
120
 
121
- #: ../admin/class-is-admin.php:412
122
  msgid "There was a validation error saving the search form."
123
  msgstr ""
124
 
125
- #: ../admin/class-is-admin.php:413
126
  #, php-format
127
  msgid ""
128
  "Please make sure you have not selected similar %s fields in the search form "
129
  "Includes and Excludes sections."
130
  msgstr ""
131
 
132
- #: ../admin/class-is-admin.php:425 ../admin/class-is-admin.php:468
133
  #: ../includes/class-is-search-form.php:59
134
  msgid "Search Forms"
135
  msgstr ""
136
 
137
- #: ../admin/class-is-admin.php:430 ../admin/class-is-admin.php:432
138
  #: ../admin/partials/search-form.php:21
139
  msgid "Add New Search Form"
140
  msgstr ""
141
 
142
- #: ../admin/class-is-admin.php:430 ../admin/class-is-admin.php:432
143
- #: ../admin/class-is-admin.php:475 ../admin/partials/search-form.php:31
144
  msgid "Add New"
145
  msgstr ""
146
 
147
- #: ../admin/class-is-admin.php:436 ../admin/partials/settings-form.php:20
148
  msgid "Ivory Search Settings"
149
  msgstr ""
150
 
151
- #: ../admin/class-is-admin.php:481
152
  #, php-format
153
  msgid "Search results for &#8220;%s&#8221;"
154
  msgstr ""
155
 
156
- #: ../admin/class-is-admin.php:492
157
  msgid "Find Search Forms"
158
  msgstr ""
159
 
160
- #: ../admin/class-is-admin.php:536
161
  msgid "You are not allowed to edit this item."
162
  msgstr ""
163
 
164
- #: ../admin/class-is-admin.php:630
165
  msgid "You are not allowed to reset this item."
166
  msgstr ""
167
 
168
- #: ../admin/class-is-admin.php:666
169
  msgid "You are not allowed to copy this item."
170
  msgstr ""
171
 
172
- #: ../admin/class-is-admin.php:707
173
  msgid "You are not allowed to delete this item."
174
  msgstr ""
175
 
176
- #: ../admin/class-is-admin.php:711
177
  msgid "Error in deleting."
178
  msgstr ""
179
 
180
- #: ../admin/class-is-admin.php:943
181
  msgid "Save Form"
182
  msgstr ""
183
 
184
- #: ../admin/class-is-admin.php:955
185
  msgid "Upgrade to Pro to Access"
186
  msgstr ""
187
 
188
- #: ../admin/class-is-admin.php:962
189
  msgid "Install Premium Version to Access"
190
  msgstr ""
191
 
192
- #: ../admin/class-is-admin.php:964
193
  msgid "Upgrade to Pro Plus to Access"
194
  msgstr ""
195
 
@@ -205,43 +205,19 @@ msgstr ""
205
  msgid "Post Types"
206
  msgstr ""
207
 
208
- #: ../admin/class-is-editor.php:113 ../admin/class-is-editor.php:150
209
- #: ../admin/class-is-editor.php:209 ../admin/class-is-editor.php:263
210
- #: ../admin/class-is-editor.php:295 ../admin/class-is-editor.php:323
211
- #: ../admin/class-is-editor.php:373 ../admin/class-is-editor.php:405
212
- #: ../admin/class-is-editor.php:443 ../admin/class-is-editor.php:484
213
- #: ../admin/class-is-editor.php:500 ../admin/class-is-editor.php:577
214
- #: ../admin/class-is-editor.php:671 ../admin/class-is-editor.php:842
215
- #: ../admin/class-is-editor.php:997 ../admin/class-is-editor.php:1037
216
- #: ../admin/class-is-editor.php:1102 ../admin/class-is-editor.php:1143
217
- #: ../admin/class-is-editor.php:1178 ../admin/class-is-editor.php:1203
218
- #: ../admin/class-is-editor.php:1246 ../admin/class-is-editor.php:1283
219
- #: ../admin/class-is-editor.php:1344 ../admin/class-is-editor.php:1363
220
- #: ../admin/class-is-editor.php:1391 ../admin/class-is-editor.php:1406
221
- #: ../admin/class-is-editor.php:1424 ../admin/class-is-editor.php:1440
222
- #: ../admin/class-is-editor.php:1459 ../admin/class-is-editor.php:1471
223
- #: ../admin/class-is-editor.php:1484 ../admin/class-is-editor.php:1496
224
- #: ../admin/class-is-settings-fields.php:118
225
  msgid "Expand All"
226
  msgstr ""
227
 
228
- #: ../admin/class-is-editor.php:113 ../admin/class-is-editor.php:150
229
- #: ../admin/class-is-editor.php:209 ../admin/class-is-editor.php:263
230
- #: ../admin/class-is-editor.php:295 ../admin/class-is-editor.php:323
231
- #: ../admin/class-is-editor.php:373 ../admin/class-is-editor.php:405
232
- #: ../admin/class-is-editor.php:443 ../admin/class-is-editor.php:484
233
- #: ../admin/class-is-editor.php:500 ../admin/class-is-editor.php:578
234
- #: ../admin/class-is-editor.php:672 ../admin/class-is-editor.php:843
235
- #: ../admin/class-is-editor.php:998 ../admin/class-is-editor.php:1037
236
- #: ../admin/class-is-editor.php:1102 ../admin/class-is-editor.php:1143
237
- #: ../admin/class-is-editor.php:1178 ../admin/class-is-editor.php:1203
238
- #: ../admin/class-is-editor.php:1246 ../admin/class-is-editor.php:1283
239
- #: ../admin/class-is-editor.php:1344 ../admin/class-is-editor.php:1363
240
- #: ../admin/class-is-editor.php:1391 ../admin/class-is-editor.php:1406
241
- #: ../admin/class-is-editor.php:1424 ../admin/class-is-editor.php:1440
242
- #: ../admin/class-is-editor.php:1459 ../admin/class-is-editor.php:1471
243
- #: ../admin/class-is-editor.php:1484 ../admin/class-is-editor.php:1496
244
- #: ../admin/class-is-settings-fields.php:118
245
  msgid "Collapse All"
246
  msgstr ""
247
 
@@ -265,7 +241,7 @@ msgstr ""
265
  msgid "No post types registered on your site."
266
  msgstr ""
267
 
268
- #: ../admin/class-is-editor.php:149 ../admin/class-is-editor.php:1036
269
  msgid "Posts, Pages & Custom Posts"
270
  msgstr ""
271
 
@@ -275,28 +251,28 @@ msgstr ""
275
 
276
  #: ../admin/class-is-editor.php:188 ../admin/class-is-editor.php:233
277
  #: ../admin/class-is-editor.php:271 ../admin/class-is-editor.php:516
278
- #: ../admin/class-is-editor.php:1077 ../admin/class-is-editor.php:1124
279
- #: ../admin/class-is-editor.php:1153 ../admin/class-is-editor.php:1297
280
  msgid "Search.."
281
  msgstr ""
282
 
283
- #: ../admin/class-is-editor.php:192 ../admin/class-is-editor.php:1081
284
  msgid "Load All"
285
  msgstr ""
286
 
287
- #: ../admin/class-is-editor.php:200 ../admin/class-is-editor.php:1089
288
  msgid "No posts created for selected post types."
289
  msgstr ""
290
 
291
  #: ../admin/class-is-editor.php:202 ../admin/class-is-editor.php:242
292
  #: ../admin/class-is-editor.php:278 ../admin/class-is-editor.php:524
293
- #: ../admin/class-is-editor.php:1091 ../admin/class-is-editor.php:1133
294
- #: ../admin/class-is-editor.php:1161 ../admin/class-is-editor.php:1305
295
  msgid ""
296
  "Press CTRL key & Left Mouse button to select multiple terms or deselect them."
297
  msgstr ""
298
 
299
- #: ../admin/class-is-editor.php:208 ../admin/class-is-editor.php:1101
300
  msgid "Category & Taxonomy Terms"
301
  msgstr ""
302
 
@@ -320,11 +296,11 @@ msgstr ""
320
  msgid "Search term description"
321
  msgstr ""
322
 
323
- #: ../admin/class-is-editor.php:255 ../admin/class-is-editor.php:1135
324
  msgid "No taxonomies registered for selected post types."
325
  msgstr ""
326
 
327
- #: ../admin/class-is-editor.php:262 ../admin/class-is-editor.php:1142
328
  msgid "Custom Fields & Metadata"
329
  msgstr ""
330
 
@@ -332,7 +308,7 @@ msgstr ""
332
  msgid "Search values of selected custom fields."
333
  msgstr ""
334
 
335
- #: ../admin/class-is-editor.php:280 ../admin/class-is-editor.php:1163
336
  msgid "No custom fields created for selected post types."
337
  msgstr ""
338
 
@@ -341,7 +317,7 @@ msgid "Selected Custom Fields :"
341
  msgstr ""
342
 
343
  #: ../admin/class-is-editor.php:294 ../admin/class-is-editor.php:840
344
- #: ../admin/class-is-editor.php:1177
345
  msgid "WooCommerce"
346
  msgstr ""
347
 
@@ -357,13 +333,13 @@ msgstr ""
357
  msgid "Search product variation"
358
  msgstr ""
359
 
360
- #: ../admin/class-is-editor.php:312 ../admin/class-is-editor.php:1192
361
  msgid ""
362
  "Please first configure this search form to search WooCommerce product post "
363
  "type."
364
  msgstr ""
365
 
366
- #: ../admin/class-is-editor.php:322 ../admin/class-is-editor.php:1202
367
  msgid "Authors"
368
  msgstr ""
369
 
@@ -381,7 +357,7 @@ msgstr ""
381
  msgid "Search author Display Name and display the posts created by that author"
382
  msgstr ""
383
 
384
- #: ../admin/class-is-editor.php:372 ../admin/class-is-editor.php:1245
385
  msgid "Post Status"
386
  msgstr ""
387
 
@@ -416,7 +392,7 @@ msgid "Search approved comment content"
416
  msgstr ""
417
 
418
  #: ../admin/class-is-editor.php:442 ../admin/class-is-editor.php:758
419
- #: ../admin/class-is-editor.php:972 ../admin/class-is-list-table.php:34
420
  msgid "Date"
421
  msgstr ""
422
 
@@ -460,7 +436,7 @@ msgstr ""
460
  msgid "Search posts without passwords"
461
  msgstr ""
462
 
463
- #: ../admin/class-is-editor.php:499 ../admin/class-is-editor.php:1282
464
  msgid "Attachments, Media, Files & MIME Types"
465
  msgstr ""
466
 
@@ -476,11 +452,11 @@ msgid ""
476
  "specific file & MIME types."
477
  msgstr ""
478
 
479
- #: ../admin/class-is-editor.php:530 ../admin/class-is-editor.php:1311
480
  msgid "Please first configure this search form to search Attachment post type."
481
  msgstr ""
482
 
483
- #: ../admin/class-is-editor.php:533 ../admin/class-is-editor.php:1314
484
  msgid ""
485
  "You are using WordPress version less than 4.9 which does not support "
486
  "searching by MIME type."
@@ -498,7 +474,7 @@ msgstr ""
498
  msgid "Enable Search Form Customization"
499
  msgstr ""
500
 
501
- #: ../admin/class-is-editor.php:575 ../admin/class-is-editor.php:995
502
  #: ../includes/class-is-search-form.php:507
503
  msgid "Customizer"
504
  msgstr ""
@@ -531,7 +507,7 @@ msgid ""
531
  msgstr ""
532
 
533
  #: ../admin/class-is-editor.php:662 ../admin/class-is-editor.php:676
534
- #: ../admin/class-is-editor.php:853 ../admin/class-is-editor.php:1002
535
  msgid "Enable AJAX Search"
536
  msgstr ""
537
 
@@ -622,304 +598,304 @@ msgstr ""
622
  msgid "Search button displays ajax search results"
623
  msgstr ""
624
 
625
- #: ../admin/class-is-editor.php:851
626
  msgid ""
627
  "Please first configure this search form to search WooCommerce product post "
628
  "type."
629
  msgstr ""
630
 
631
- #: ../admin/class-is-editor.php:854
632
  msgid "Display selected WooCommerce content in the search results."
633
  msgstr ""
634
 
635
- #: ../admin/class-is-editor.php:861 ../admin/class-is-editor.php:973
636
  msgid "Price"
637
  msgstr ""
638
 
639
- #: ../admin/class-is-editor.php:872
640
  msgid "Hide Price for Out of Stock Products"
641
  msgstr ""
642
 
643
- #: ../admin/class-is-editor.php:883
644
  msgid "Sale Badge"
645
  msgstr ""
646
 
647
- #: ../admin/class-is-editor.php:894
648
  msgid "SKU"
649
  msgstr ""
650
 
651
- #: ../admin/class-is-editor.php:905
652
  msgid "Stock Status"
653
  msgstr ""
654
 
655
- #: ../admin/class-is-editor.php:916
656
  msgid "Featured Icon"
657
  msgstr ""
658
 
659
- #: ../admin/class-is-editor.php:927
660
  msgid "Matching Categories"
661
  msgstr ""
662
 
663
- #: ../admin/class-is-editor.php:938
664
  msgid "Matching Tags"
665
  msgstr ""
666
 
667
- #: ../admin/class-is-editor.php:949
668
  msgid "Details Box"
669
  msgstr ""
670
 
671
- #: ../admin/class-is-editor.php:955
672
  msgid "Below options only apply to matching categories or tags."
673
  msgstr ""
674
 
675
- #: ../admin/class-is-editor.php:957
676
  msgid "Product List"
677
  msgstr ""
678
 
679
- #: ../admin/class-is-editor.php:960
680
  msgid "All Product"
681
  msgstr ""
682
 
683
- #: ../admin/class-is-editor.php:961
684
  msgid "Featured Products"
685
  msgstr ""
686
 
687
- #: ../admin/class-is-editor.php:962
688
  msgid "On-sale Products</option>"
689
  msgstr ""
690
 
691
- #: ../admin/class-is-editor.php:969
692
  msgid "Order by"
693
  msgstr ""
694
 
695
- #: ../admin/class-is-editor.php:974
696
  msgid "Random"
697
  msgstr ""
698
 
699
- #: ../admin/class-is-editor.php:975
700
  msgid "Sales"
701
  msgstr ""
702
 
703
- #: ../admin/class-is-editor.php:982
704
  msgid "Order"
705
  msgstr ""
706
 
707
- #: ../admin/class-is-editor.php:985
708
  msgid "ASC"
709
  msgstr ""
710
 
711
- #: ../admin/class-is-editor.php:986
712
  msgid "DESC"
713
  msgstr ""
714
 
715
- #: ../admin/class-is-editor.php:1003
716
  msgid ""
717
  "Use below customizer to customize AJAX search results color and loader image."
718
  msgstr ""
719
 
720
- #: ../admin/class-is-editor.php:1011
721
  msgid "AJAX Search Customizer"
722
  msgstr ""
723
 
724
- #: ../admin/class-is-editor.php:1029
725
  msgid "This search form excludes the below configured content from search."
726
  msgstr ""
727
 
728
- #: ../admin/class-is-editor.php:1040
729
  msgid "Exclude selected posts from search."
730
  msgstr ""
731
 
732
- #: ../admin/class-is-editor.php:1095
733
  msgid ""
734
  "This search form is already configured in the Includes section to search "
735
  "specific posts."
736
  msgstr ""
737
 
738
- #: ../admin/class-is-editor.php:1105
739
  msgid "Exclude posts of selected categories, taxonomies & terms from search."
740
  msgstr ""
741
 
742
- #: ../admin/class-is-editor.php:1146
743
  msgid "Exclude posts having selected custom fields from search."
744
  msgstr ""
745
 
746
- #: ../admin/class-is-editor.php:1167
747
  msgid "Excluded Custom Fields :"
748
  msgstr ""
749
 
750
- #: ../admin/class-is-editor.php:1181
751
  msgid "Exclude selected WooCommerce products from search."
752
  msgstr ""
753
 
754
- #: ../admin/class-is-editor.php:1189
755
  msgid "Exclude 'Out of Stock' products"
756
  msgstr ""
757
 
758
- #: ../admin/class-is-editor.php:1206
759
  msgid "Exclude posts created by selected authors from search."
760
  msgstr ""
761
 
762
- #: ../admin/class-is-editor.php:1238
763
  msgid ""
764
  "This search form is already configured in the Includes section to search "
765
  "posts created by specific authors."
766
  msgstr ""
767
 
768
- #: ../admin/class-is-editor.php:1249
769
  msgid "Exclude posts having selected post statuses from search."
770
  msgstr ""
771
 
772
- #: ../admin/class-is-editor.php:1272
773
  msgid ""
774
  "This search form is already configured in the Includes section to search "
775
  "posts of specific post statuses."
776
  msgstr ""
777
 
778
- #: ../admin/class-is-editor.php:1277
779
  msgid "Exclude sticky posts from search"
780
  msgstr ""
781
 
782
- #: ../admin/class-is-editor.php:1286
783
  msgid ""
784
  "Exclude selected media, attachments, images, documents, videos, files or "
785
  "MIME types from search."
786
  msgstr ""
787
 
788
- #: ../admin/class-is-editor.php:1308
789
  msgid ""
790
  "This search form is already configured in the Includes section to search "
791
  "specific Attachments, Media or Files."
792
  msgstr ""
793
 
794
- #: ../admin/class-is-editor.php:1318
795
  msgid "Excluded File Types :"
796
  msgstr ""
797
 
798
- #: ../admin/class-is-editor.php:1336
799
  msgid "Configure below options to manage functionality of this search form."
800
  msgstr ""
801
 
802
- #: ../admin/class-is-editor.php:1343
803
  msgid "Posts Per Page"
804
  msgstr ""
805
 
806
- #: ../admin/class-is-editor.php:1347
807
  msgid "Display selected number of posts on search results page."
808
  msgstr ""
809
 
810
- #: ../admin/class-is-editor.php:1362
811
  msgid "Order Search Results"
812
  msgstr ""
813
 
814
- #: ../admin/class-is-editor.php:1365
815
  msgid "Display posts on search results page ordered by selected options."
816
  msgstr ""
817
 
818
- #: ../admin/class-is-editor.php:1390
819
  msgid "Highlight Search Terms"
820
  msgstr ""
821
 
822
- #: ../admin/class-is-editor.php:1396
823
  msgid "Highlight searched terms on search results page"
824
  msgstr ""
825
 
826
- #: ../admin/class-is-editor.php:1399
827
  msgid "Set highlight color in Hex format"
828
  msgstr ""
829
 
830
- #: ../admin/class-is-editor.php:1405
831
  msgid "Search All Or Any Search Terms"
832
  msgstr ""
833
 
834
- #: ../admin/class-is-editor.php:1409
835
  msgid ""
836
  "Select whether to search posts having all or any of the words being searched."
837
  msgstr ""
838
 
839
- #: ../admin/class-is-editor.php:1415
840
  msgid "OR - Display content having any of the search terms"
841
  msgstr ""
842
 
843
- #: ../admin/class-is-editor.php:1417
844
  msgid "AND - Display content having all the search terms"
845
  msgstr ""
846
 
847
- #: ../admin/class-is-editor.php:1423
848
  msgid "Fuzzy Matching"
849
  msgstr ""
850
 
851
- #: ../admin/class-is-editor.php:1426
852
  msgid ""
853
  "Select whether to search posts having whole or partial word being searched."
854
  msgstr ""
855
 
856
- #: ../admin/class-is-editor.php:1431
857
  msgid "Whole - Search posts that include the whole search term"
858
  msgstr ""
859
 
860
- #: ../admin/class-is-editor.php:1433
861
  msgid ""
862
  "Partial - Also search words in the posts that begins or ends with the search "
863
  "term"
864
  msgstr ""
865
 
866
- #: ../admin/class-is-editor.php:1439
867
  msgid "Keyword Stemming"
868
  msgstr ""
869
 
870
- #: ../admin/class-is-editor.php:1443
871
  msgid "Select whether to search the base word of a searched keyword."
872
  msgstr ""
873
 
874
- #: ../admin/class-is-editor.php:1444
875
  msgid ""
876
  "For Example: If you search \"doing\" then it also searches base word of "
877
  "\"doing\" that is \"do\" in the specified post types."
878
  msgstr ""
879
 
880
- #: ../admin/class-is-editor.php:1445
881
  msgid "Not recommended to use when Fuzzy Matching option is set to Whole."
882
  msgstr ""
883
 
884
- #: ../admin/class-is-editor.php:1451
885
  msgid "Also search base word of searched keyword"
886
  msgstr ""
887
 
888
- #: ../admin/class-is-editor.php:1458
889
  msgid "Sticky Posts"
890
  msgstr ""
891
 
892
- #: ../admin/class-is-editor.php:1464
893
  msgid "Display sticky posts to the start of the search results page"
894
  msgstr ""
895
 
896
- #: ../admin/class-is-editor.php:1470
897
  msgid "Empty Search Query"
898
  msgstr ""
899
 
900
- #: ../admin/class-is-editor.php:1473
901
  msgid ""
902
  "Select whether to display an error when user perform search without any "
903
  "search word."
904
  msgstr ""
905
 
906
- #: ../admin/class-is-editor.php:1478
907
  msgid "Display an error for empty search query"
908
  msgstr ""
909
 
910
- #: ../admin/class-is-editor.php:1483
911
  msgid "Demo Search"
912
  msgstr ""
913
 
914
- #: ../admin/class-is-editor.php:1489
915
  msgid "Display search form only for site administrator"
916
  msgstr ""
917
 
918
- #: ../admin/class-is-editor.php:1495 ../admin/class-is-settings-fields.php:163
919
  msgid "Disable Search"
920
  msgstr ""
921
 
922
- #: ../admin/class-is-editor.php:1501
923
  msgid "Disable this search form"
924
  msgstr ""
925
 
@@ -1090,8 +1066,8 @@ msgid "Edit &#8220;%s&#8221;"
1090
  msgstr ""
1091
 
1092
  #: ../admin/class-is-list-table.php:158
1093
- #: ../admin/class-is-settings-fields.php:385
1094
- #: ../admin/class-is-settings-fields.php:417
1095
  #: ../includes/class-is-search-form.php:503 ../includes/class-is-widget.php:69
1096
  msgid "Edit"
1097
  msgstr ""
@@ -1119,243 +1095,238 @@ msgstr ""
1119
  msgid "d/m/Y"
1120
  msgstr ""
1121
 
1122
- #: ../admin/class-is-settings-fields.php:142
1123
  msgid "Select Menu"
1124
  msgstr ""
1125
 
1126
- #: ../admin/class-is-settings-fields.php:143
1127
  #: ../includes/class-is-search-form.php:60
1128
  msgid "Search Form"
1129
  msgstr ""
1130
 
1131
- #: ../admin/class-is-settings-fields.php:144
1132
  msgid "Form Style"
1133
  msgstr ""
1134
 
1135
- #: ../admin/class-is-settings-fields.php:145
1136
  msgid "Menu Title"
1137
  msgstr ""
1138
 
1139
- #: ../admin/class-is-settings-fields.php:146
1140
  msgid "Menu Classes"
1141
  msgstr ""
1142
 
1143
- #: ../admin/class-is-settings-fields.php:147
1144
  msgid "Google CSE"
1145
  msgstr ""
1146
 
1147
- #: ../admin/class-is-settings-fields.php:148
1148
  msgid "Close Icon"
1149
  msgstr ""
1150
 
1151
- #: ../admin/class-is-settings-fields.php:156
1152
  msgid "Header Search"
1153
  msgstr ""
1154
 
1155
- #: ../admin/class-is-settings-fields.php:157
1156
  msgid "Footer Search"
1157
  msgstr ""
1158
 
1159
- #: ../admin/class-is-settings-fields.php:158
1160
  msgid "Mobile Search"
1161
  msgstr ""
1162
 
1163
- #: ../admin/class-is-settings-fields.php:159
1164
  msgid "Custom CSS"
1165
  msgstr ""
1166
 
1167
- #: ../admin/class-is-settings-fields.php:160
1168
  msgid "Stopwords"
1169
  msgstr ""
1170
 
1171
- #: ../admin/class-is-settings-fields.php:161
1172
  msgid "Synonyms"
1173
  msgstr ""
1174
 
1175
- #: ../admin/class-is-settings-fields.php:162
1176
  msgid "Do Not Load Plugin Files"
1177
  msgstr ""
1178
 
1179
- #: ../admin/class-is-settings-fields.php:164
1180
  msgid "Default Search"
1181
  msgstr ""
1182
 
1183
- #: ../admin/class-is-settings-fields.php:174
1184
  msgid "Display search in menu and configure it using below options."
1185
  msgstr ""
1186
 
1187
- #: ../admin/class-is-settings-fields.php:181
1188
  msgid "Make search changes on entire website using below options."
1189
  msgstr ""
1190
 
1191
- #: ../admin/class-is-settings-fields.php:189
1192
  msgid "Display search form on selected menu."
1193
  msgstr ""
1194
 
1195
- #: ../admin/class-is-settings-fields.php:210
1196
  #, php-format
1197
  msgid "Please assign menu to navigation menu location in the %sMenus screen%s."
1198
  msgstr ""
1199
 
1200
- #: ../admin/class-is-settings-fields.php:213
1201
  msgid "Navigation menu location is not registered on the site."
1202
  msgstr ""
1203
 
1204
- #: ../admin/class-is-settings-fields.php:223
1205
  msgid "Select search form that will control menu search functionality."
1206
  msgstr ""
1207
 
1208
- #: ../admin/class-is-settings-fields.php:257
1209
- #: ../admin/class-is-settings-fields.php:387
1210
- #: ../admin/class-is-settings-fields.php:419 ../includes/class-is-widget.php:71
1211
  msgid "Create New"
1212
  msgstr ""
1213
 
1214
- #: ../admin/class-is-settings-fields.php:269
1215
  msgid "Select menu search form style."
1216
  msgstr ""
1217
 
1218
- #: ../admin/class-is-settings-fields.php:273
1219
  msgid "Default"
1220
  msgstr ""
1221
 
1222
- #: ../admin/class-is-settings-fields.php:274
1223
  msgid "Dropdown"
1224
  msgstr ""
1225
 
1226
- #: ../admin/class-is-settings-fields.php:275
1227
  msgid "Sliding"
1228
  msgstr ""
1229
 
1230
- #: ../admin/class-is-settings-fields.php:276
1231
  msgid "Full Width"
1232
  msgstr ""
1233
 
1234
- #: ../admin/class-is-settings-fields.php:277
1235
  msgid "Popup"
1236
  msgstr ""
1237
 
1238
- #: ../admin/class-is-settings-fields.php:309
1239
  msgid "Add menu title to display in place of search icon."
1240
  msgstr ""
1241
 
1242
- #: ../admin/class-is-settings-fields.php:321
1243
  msgid "Add class to search form menu item."
1244
  msgstr ""
1245
 
1246
- #: ../admin/class-is-settings-fields.php:326
1247
  msgid "Add multiple classes seperated by space."
1248
  msgstr ""
1249
 
1250
- #: ../admin/class-is-settings-fields.php:334
1251
  msgid ""
1252
  "Add Google Custom Search( CSE ) search form code that will replace default "
1253
  "search form."
1254
  msgstr ""
1255
 
1256
- #: ../admin/class-is-settings-fields.php:357
1257
  msgid "Display search form close icon"
1258
  msgstr ""
1259
 
1260
- #: ../admin/class-is-settings-fields.php:366
1261
  msgid "Select search form to display in site header."
1262
  msgstr ""
1263
 
1264
- #: ../admin/class-is-settings-fields.php:378
1265
- #: ../admin/class-is-settings-fields.php:410 ../includes/class-is-widget.php:62
1266
  msgid "none"
1267
  msgstr ""
1268
 
1269
- #: ../admin/class-is-settings-fields.php:398
1270
  msgid "Select search form to display in site footer."
1271
  msgstr ""
1272
 
1273
- #: ../admin/class-is-settings-fields.php:439
1274
  msgid "Display search form in site header on mobile devices"
1275
  msgstr ""
1276
 
1277
- #: ../admin/class-is-settings-fields.php:442
1278
  msgid ""
1279
  "If this site uses cache then please select the below option to display "
1280
  "search form on mobile."
1281
  msgstr ""
1282
 
1283
- #: ../admin/class-is-settings-fields.php:455
1284
  msgid "This site uses cache"
1285
  msgstr ""
1286
 
1287
- #: ../admin/class-is-settings-fields.php:463
1288
  msgid "Add custom css code."
1289
  msgstr ""
1290
 
1291
- #: ../admin/class-is-settings-fields.php:476
1292
  msgid "Enter stopwords here that will not be searched."
1293
  msgstr ""
1294
 
1295
- #: ../admin/class-is-settings-fields.php:480
1296
  msgid "Please separate multiple words with commas."
1297
  msgstr ""
1298
 
1299
- #: ../admin/class-is-settings-fields.php:488
1300
  msgid "Add synonyms here to make the searches find better results."
1301
  msgstr ""
1302
 
1303
- #: ../admin/class-is-settings-fields.php:489
1304
  msgid ""
1305
  "If you add bird = crow to the list of synonyms, searches for bird "
1306
  "automatically become a search for bird crow and will thus match to posts "
1307
  "that include either bird or crow."
1308
  msgstr ""
1309
 
1310
- #: ../admin/class-is-settings-fields.php:494
1311
- msgid "The format here is key = value;"
1312
- msgstr ""
1313
-
1314
- #: ../admin/class-is-settings-fields.php:495
1315
- msgid "Please separate every synonyms key = value pairs with semicolon."
1316
- msgstr ""
1317
-
1318
- #: ../admin/class-is-settings-fields.php:498
1319
  msgid ""
1320
  "This only works for search forms configured to search any of the search "
1321
  "terms(OR) and not all search terms(AND)."
1322
  msgstr ""
1323
 
1324
- #: ../admin/class-is-settings-fields.php:509
1325
- msgid ""
1326
- "Disable synonyms for the search forms configured to search all search terms"
 
 
 
1327
  msgstr ""
1328
 
1329
- #: ../admin/class-is-settings-fields.php:518
1330
  msgid ""
1331
  "Enable below options to disable loading of plugin CSS and JavaScript files."
1332
  msgstr ""
1333
 
1334
- #: ../admin/class-is-settings-fields.php:522
1335
  msgid "Plugin CSS files"
1336
  msgstr ""
1337
 
1338
- #: ../admin/class-is-settings-fields.php:523
1339
  msgid "Plugin JavaScript files"
1340
  msgstr ""
1341
 
1342
- #: ../admin/class-is-settings-fields.php:543
1343
  msgid ""
1344
  "If checked, you have to add following plugin file code into your child theme "
1345
  "CSS file."
1346
  msgstr ""
1347
 
1348
- #: ../admin/class-is-settings-fields.php:547
1349
  msgid ""
1350
  "If checked, you have to add following plugin files code into your child "
1351
  "theme JavaScript file."
1352
  msgstr ""
1353
 
1354
- #: ../admin/class-is-settings-fields.php:563
1355
  msgid "Disable search functionality on entire website"
1356
  msgstr ""
1357
 
1358
- #: ../admin/class-is-settings-fields.php:574
1359
  msgid ""
1360
  "Do not use Default Search Form to control WordPress default search "
1361
  "functionality"
@@ -1366,7 +1337,7 @@ msgid "Search form name"
1366
  msgstr ""
1367
 
1368
  #: ../admin/partials/search-form.php:80
1369
- msgid "Editing the title of Default Search Form is prohibited."
1370
  msgstr ""
1371
 
1372
  #: ../admin/partials/search-form.php:92
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Ivory Search\n"
4
+ "POT-Creation-Date: 2019-06-28 22:20+0530\n"
5
+ "PO-Revision-Date: 2019-06-28 22:20+0530\n"
6
  "Last-Translator: \n"
7
  "Language-Team: Ivory Search <admin@ivorysearch.com>\n"
8
  "Language: en_US\n"
20
  msgid "The changes you made will be lost if you navigate away from this page."
21
  msgstr ""
22
 
23
+ #: ../admin/class-is-admin.php:136 ../admin/class-is-settings-fields.php:257
24
  #: ../admin/partials/search-form.php:23
25
  msgid "Edit Search Form"
26
  msgstr ""
33
  msgid "Edit the Default Search Form to manage the default WordPress search."
34
  msgstr ""
35
 
36
+ #: ../admin/class-is-admin.php:162 ../admin/class-is-admin.php:439
37
  #: ../admin/class-is-help.php:64
38
  msgid "Settings"
39
  msgstr ""
53
  "If you like %1$s please leave us a %2$s rating. A huge thanks in advance!"
54
  msgstr ""
55
 
56
+ #: ../admin/class-is-admin.php:203 ../admin/class-is-admin.php:426
57
  #: ../includes/class-is-admin-public.php:106 ../includes/class-is-widget.php:13
58
  #: ../includes/class-is-widget.php:45
59
  msgid "Ivory Search"
98
  msgid "No posts found"
99
  msgstr ""
100
 
101
+ #: ../admin/class-is-admin.php:392
102
  msgid "Search form created."
103
  msgstr ""
104
 
105
+ #: ../admin/class-is-admin.php:394
106
  msgid "Search form saved."
107
  msgstr ""
108
 
109
+ #: ../admin/class-is-admin.php:396
110
  msgid "Search form deleted."
111
  msgstr ""
112
 
113
+ #: ../admin/class-is-admin.php:398
114
  msgid "Search form reset."
115
  msgstr ""
116
 
117
+ #: ../admin/class-is-admin.php:407
118
  msgid "There was an error saving the search form."
119
  msgstr ""
120
 
121
+ #: ../admin/class-is-admin.php:415
122
  msgid "There was a validation error saving the search form."
123
  msgstr ""
124
 
125
+ #: ../admin/class-is-admin.php:416
126
  #, php-format
127
  msgid ""
128
  "Please make sure you have not selected similar %s fields in the search form "
129
  "Includes and Excludes sections."
130
  msgstr ""
131
 
132
+ #: ../admin/class-is-admin.php:428 ../admin/class-is-admin.php:471
133
  #: ../includes/class-is-search-form.php:59
134
  msgid "Search Forms"
135
  msgstr ""
136
 
137
+ #: ../admin/class-is-admin.php:433 ../admin/class-is-admin.php:435
138
  #: ../admin/partials/search-form.php:21
139
  msgid "Add New Search Form"
140
  msgstr ""
141
 
142
+ #: ../admin/class-is-admin.php:433 ../admin/class-is-admin.php:435
143
+ #: ../admin/class-is-admin.php:478 ../admin/partials/search-form.php:31
144
  msgid "Add New"
145
  msgstr ""
146
 
147
+ #: ../admin/class-is-admin.php:439 ../admin/partials/settings-form.php:20
148
  msgid "Ivory Search Settings"
149
  msgstr ""
150
 
151
+ #: ../admin/class-is-admin.php:484
152
  #, php-format
153
  msgid "Search results for &#8220;%s&#8221;"
154
  msgstr ""
155
 
156
+ #: ../admin/class-is-admin.php:495
157
  msgid "Find Search Forms"
158
  msgstr ""
159
 
160
+ #: ../admin/class-is-admin.php:539
161
  msgid "You are not allowed to edit this item."
162
  msgstr ""
163
 
164
+ #: ../admin/class-is-admin.php:633
165
  msgid "You are not allowed to reset this item."
166
  msgstr ""
167
 
168
+ #: ../admin/class-is-admin.php:669
169
  msgid "You are not allowed to copy this item."
170
  msgstr ""
171
 
172
+ #: ../admin/class-is-admin.php:710
173
  msgid "You are not allowed to delete this item."
174
  msgstr ""
175
 
176
+ #: ../admin/class-is-admin.php:714
177
  msgid "Error in deleting."
178
  msgstr ""
179
 
180
+ #: ../admin/class-is-admin.php:946
181
  msgid "Save Form"
182
  msgstr ""
183
 
184
+ #: ../admin/class-is-admin.php:958
185
  msgid "Upgrade to Pro to Access"
186
  msgstr ""
187
 
188
+ #: ../admin/class-is-admin.php:965
189
  msgid "Install Premium Version to Access"
190
  msgstr ""
191
 
192
+ #: ../admin/class-is-admin.php:967
193
  msgid "Upgrade to Pro Plus to Access"
194
  msgstr ""
195
 
205
  msgid "Post Types"
206
  msgstr ""
207
 
208
+ #: ../admin/class-is-editor.php:113 ../admin/class-is-editor.php:500
209
+ #: ../admin/class-is-editor.php:577 ../admin/class-is-editor.php:671
210
+ #: ../admin/class-is-editor.php:993 ../admin/class-is-editor.php:1033
211
+ #: ../admin/class-is-editor.php:1279 ../admin/class-is-editor.php:1340
212
+ #: ../admin/class-is-editor.php:1492 ../admin/class-is-settings-fields.php:118
 
 
 
 
 
 
 
 
 
 
 
 
213
  msgid "Expand All"
214
  msgstr ""
215
 
216
+ #: ../admin/class-is-editor.php:113 ../admin/class-is-editor.php:500
217
+ #: ../admin/class-is-editor.php:578 ../admin/class-is-editor.php:672
218
+ #: ../admin/class-is-editor.php:994 ../admin/class-is-editor.php:1033
219
+ #: ../admin/class-is-editor.php:1279 ../admin/class-is-editor.php:1340
220
+ #: ../admin/class-is-editor.php:1492 ../admin/class-is-settings-fields.php:118
 
 
 
 
 
 
 
 
 
 
 
 
221
  msgid "Collapse All"
222
  msgstr ""
223
 
241
  msgid "No post types registered on your site."
242
  msgstr ""
243
 
244
+ #: ../admin/class-is-editor.php:149 ../admin/class-is-editor.php:1032
245
  msgid "Posts, Pages & Custom Posts"
246
  msgstr ""
247
 
251
 
252
  #: ../admin/class-is-editor.php:188 ../admin/class-is-editor.php:233
253
  #: ../admin/class-is-editor.php:271 ../admin/class-is-editor.php:516
254
+ #: ../admin/class-is-editor.php:1073 ../admin/class-is-editor.php:1120
255
+ #: ../admin/class-is-editor.php:1149 ../admin/class-is-editor.php:1293
256
  msgid "Search.."
257
  msgstr ""
258
 
259
+ #: ../admin/class-is-editor.php:192 ../admin/class-is-editor.php:1077
260
  msgid "Load All"
261
  msgstr ""
262
 
263
+ #: ../admin/class-is-editor.php:200 ../admin/class-is-editor.php:1085
264
  msgid "No posts created for selected post types."
265
  msgstr ""
266
 
267
  #: ../admin/class-is-editor.php:202 ../admin/class-is-editor.php:242
268
  #: ../admin/class-is-editor.php:278 ../admin/class-is-editor.php:524
269
+ #: ../admin/class-is-editor.php:1087 ../admin/class-is-editor.php:1129
270
+ #: ../admin/class-is-editor.php:1157 ../admin/class-is-editor.php:1301
271
  msgid ""
272
  "Press CTRL key & Left Mouse button to select multiple terms or deselect them."
273
  msgstr ""
274
 
275
+ #: ../admin/class-is-editor.php:208 ../admin/class-is-editor.php:1097
276
  msgid "Category & Taxonomy Terms"
277
  msgstr ""
278
 
296
  msgid "Search term description"
297
  msgstr ""
298
 
299
+ #: ../admin/class-is-editor.php:255 ../admin/class-is-editor.php:1131
300
  msgid "No taxonomies registered for selected post types."
301
  msgstr ""
302
 
303
+ #: ../admin/class-is-editor.php:262 ../admin/class-is-editor.php:1138
304
  msgid "Custom Fields & Metadata"
305
  msgstr ""
306
 
308
  msgid "Search values of selected custom fields."
309
  msgstr ""
310
 
311
+ #: ../admin/class-is-editor.php:280 ../admin/class-is-editor.php:1159
312
  msgid "No custom fields created for selected post types."
313
  msgstr ""
314
 
317
  msgstr ""
318
 
319
  #: ../admin/class-is-editor.php:294 ../admin/class-is-editor.php:840
320
+ #: ../admin/class-is-editor.php:1173
321
  msgid "WooCommerce"
322
  msgstr ""
323
 
333
  msgid "Search product variation"
334
  msgstr ""
335
 
336
+ #: ../admin/class-is-editor.php:312 ../admin/class-is-editor.php:1188
337
  msgid ""
338
  "Please first configure this search form to search WooCommerce product post "
339
  "type."
340
  msgstr ""
341
 
342
+ #: ../admin/class-is-editor.php:322 ../admin/class-is-editor.php:1198
343
  msgid "Authors"
344
  msgstr ""
345
 
357
  msgid "Search author Display Name and display the posts created by that author"
358
  msgstr ""
359
 
360
+ #: ../admin/class-is-editor.php:372 ../admin/class-is-editor.php:1241
361
  msgid "Post Status"
362
  msgstr ""
363
 
392
  msgstr ""
393
 
394
  #: ../admin/class-is-editor.php:442 ../admin/class-is-editor.php:758
395
+ #: ../admin/class-is-editor.php:968 ../admin/class-is-list-table.php:34
396
  msgid "Date"
397
  msgstr ""
398
 
436
  msgid "Search posts without passwords"
437
  msgstr ""
438
 
439
+ #: ../admin/class-is-editor.php:499 ../admin/class-is-editor.php:1278
440
  msgid "Attachments, Media, Files & MIME Types"
441
  msgstr ""
442
 
452
  "specific file & MIME types."
453
  msgstr ""
454
 
455
+ #: ../admin/class-is-editor.php:530 ../admin/class-is-editor.php:1307
456
  msgid "Please first configure this search form to search Attachment post type."
457
  msgstr ""
458
 
459
+ #: ../admin/class-is-editor.php:533 ../admin/class-is-editor.php:1310
460
  msgid ""
461
  "You are using WordPress version less than 4.9 which does not support "
462
  "searching by MIME type."
474
  msgid "Enable Search Form Customization"
475
  msgstr ""
476
 
477
+ #: ../admin/class-is-editor.php:575 ../admin/class-is-editor.php:991
478
  #: ../includes/class-is-search-form.php:507
479
  msgid "Customizer"
480
  msgstr ""
507
  msgstr ""
508
 
509
  #: ../admin/class-is-editor.php:662 ../admin/class-is-editor.php:676
510
+ #: ../admin/class-is-editor.php:849 ../admin/class-is-editor.php:998
511
  msgid "Enable AJAX Search"
512
  msgstr ""
513
 
598
  msgid "Search button displays ajax search results"
599
  msgstr ""
600
 
601
+ #: ../admin/class-is-editor.php:847
602
  msgid ""
603
  "Please first configure this search form to search WooCommerce product post "
604
  "type."
605
  msgstr ""
606
 
607
+ #: ../admin/class-is-editor.php:850
608
  msgid "Display selected WooCommerce content in the search results."
609
  msgstr ""
610
 
611
+ #: ../admin/class-is-editor.php:857 ../admin/class-is-editor.php:969
612
  msgid "Price"
613
  msgstr ""
614
 
615
+ #: ../admin/class-is-editor.php:868
616
  msgid "Hide Price for Out of Stock Products"
617
  msgstr ""
618
 
619
+ #: ../admin/class-is-editor.php:879
620
  msgid "Sale Badge"
621
  msgstr ""
622
 
623
+ #: ../admin/class-is-editor.php:890
624
  msgid "SKU"
625
  msgstr ""
626
 
627
+ #: ../admin/class-is-editor.php:901
628
  msgid "Stock Status"
629
  msgstr ""
630
 
631
+ #: ../admin/class-is-editor.php:912
632
  msgid "Featured Icon"
633
  msgstr ""
634
 
635
+ #: ../admin/class-is-editor.php:923
636
  msgid "Matching Categories"
637
  msgstr ""
638
 
639
+ #: ../admin/class-is-editor.php:934
640
  msgid "Matching Tags"
641
  msgstr ""
642
 
643
+ #: ../admin/class-is-editor.php:945
644
  msgid "Details Box"
645
  msgstr ""
646
 
647
+ #: ../admin/class-is-editor.php:951
648
  msgid "Below options only apply to matching categories or tags."
649
  msgstr ""
650
 
651
+ #: ../admin/class-is-editor.php:953
652
  msgid "Product List"
653
  msgstr ""
654
 
655
+ #: ../admin/class-is-editor.php:956
656
  msgid "All Product"
657
  msgstr ""
658
 
659
+ #: ../admin/class-is-editor.php:957
660
  msgid "Featured Products"
661
  msgstr ""
662
 
663
+ #: ../admin/class-is-editor.php:958
664
  msgid "On-sale Products</option>"
665
  msgstr ""
666
 
667
+ #: ../admin/class-is-editor.php:965
668
  msgid "Order by"
669
  msgstr ""
670
 
671
+ #: ../admin/class-is-editor.php:970
672
  msgid "Random"
673
  msgstr ""
674
 
675
+ #: ../admin/class-is-editor.php:971
676
  msgid "Sales"
677
  msgstr ""
678
 
679
+ #: ../admin/class-is-editor.php:978
680
  msgid "Order"
681
  msgstr ""
682
 
683
+ #: ../admin/class-is-editor.php:981
684
  msgid "ASC"
685
  msgstr ""
686
 
687
+ #: ../admin/class-is-editor.php:982
688
  msgid "DESC"
689
  msgstr ""
690
 
691
+ #: ../admin/class-is-editor.php:999
692
  msgid ""
693
  "Use below customizer to customize AJAX search results color and loader image."
694
  msgstr ""
695
 
696
+ #: ../admin/class-is-editor.php:1007
697
  msgid "AJAX Search Customizer"
698
  msgstr ""
699
 
700
+ #: ../admin/class-is-editor.php:1025
701
  msgid "This search form excludes the below configured content from search."
702
  msgstr ""
703
 
704
+ #: ../admin/class-is-editor.php:1036
705
  msgid "Exclude selected posts from search."
706
  msgstr ""
707
 
708
+ #: ../admin/class-is-editor.php:1091
709
  msgid ""
710
  "This search form is already configured in the Includes section to search "
711
  "specific posts."
712
  msgstr ""
713
 
714
+ #: ../admin/class-is-editor.php:1101
715
  msgid "Exclude posts of selected categories, taxonomies & terms from search."
716
  msgstr ""
717
 
718
+ #: ../admin/class-is-editor.php:1142
719
  msgid "Exclude posts having selected custom fields from search."
720
  msgstr ""
721
 
722
+ #: ../admin/class-is-editor.php:1163
723
  msgid "Excluded Custom Fields :"
724
  msgstr ""
725
 
726
+ #: ../admin/class-is-editor.php:1177
727
  msgid "Exclude selected WooCommerce products from search."
728
  msgstr ""
729
 
730
+ #: ../admin/class-is-editor.php:1185
731
  msgid "Exclude 'Out of Stock' products"
732
  msgstr ""
733
 
734
+ #: ../admin/class-is-editor.php:1202
735
  msgid "Exclude posts created by selected authors from search."
736
  msgstr ""
737
 
738
+ #: ../admin/class-is-editor.php:1234
739
  msgid ""
740
  "This search form is already configured in the Includes section to search "
741
  "posts created by specific authors."
742
  msgstr ""
743
 
744
+ #: ../admin/class-is-editor.php:1245
745
  msgid "Exclude posts having selected post statuses from search."
746
  msgstr ""
747
 
748
+ #: ../admin/class-is-editor.php:1268
749
  msgid ""
750
  "This search form is already configured in the Includes section to search "
751
  "posts of specific post statuses."
752
  msgstr ""
753
 
754
+ #: ../admin/class-is-editor.php:1273
755
  msgid "Exclude sticky posts from search"
756
  msgstr ""
757
 
758
+ #: ../admin/class-is-editor.php:1282
759
  msgid ""
760
  "Exclude selected media, attachments, images, documents, videos, files or "
761
  "MIME types from search."
762
  msgstr ""
763
 
764
+ #: ../admin/class-is-editor.php:1304
765
  msgid ""
766
  "This search form is already configured in the Includes section to search "
767
  "specific Attachments, Media or Files."
768
  msgstr ""
769
 
770
+ #: ../admin/class-is-editor.php:1314
771
  msgid "Excluded File Types :"
772
  msgstr ""
773
 
774
+ #: ../admin/class-is-editor.php:1332
775
  msgid "Configure below options to manage functionality of this search form."
776
  msgstr ""
777
 
778
+ #: ../admin/class-is-editor.php:1339
779
  msgid "Posts Per Page"
780
  msgstr ""
781
 
782
+ #: ../admin/class-is-editor.php:1343
783
  msgid "Display selected number of posts on search results page."
784
  msgstr ""
785
 
786
+ #: ../admin/class-is-editor.php:1358
787
  msgid "Order Search Results"
788
  msgstr ""
789
 
790
+ #: ../admin/class-is-editor.php:1361
791
  msgid "Display posts on search results page ordered by selected options."
792
  msgstr ""
793
 
794
+ #: ../admin/class-is-editor.php:1386
795
  msgid "Highlight Search Terms"
796
  msgstr ""
797
 
798
+ #: ../admin/class-is-editor.php:1392
799
  msgid "Highlight searched terms on search results page"
800
  msgstr ""
801
 
802
+ #: ../admin/class-is-editor.php:1395
803
  msgid "Set highlight color in Hex format"
804
  msgstr ""
805
 
806
+ #: ../admin/class-is-editor.php:1401
807
  msgid "Search All Or Any Search Terms"
808
  msgstr ""
809
 
810
+ #: ../admin/class-is-editor.php:1405
811
  msgid ""
812
  "Select whether to search posts having all or any of the words being searched."
813
  msgstr ""
814
 
815
+ #: ../admin/class-is-editor.php:1411
816
  msgid "OR - Display content having any of the search terms"
817
  msgstr ""
818
 
819
+ #: ../admin/class-is-editor.php:1413
820
  msgid "AND - Display content having all the search terms"
821
  msgstr ""
822
 
823
+ #: ../admin/class-is-editor.php:1419
824
  msgid "Fuzzy Matching"
825
  msgstr ""
826
 
827
+ #: ../admin/class-is-editor.php:1422
828
  msgid ""
829
  "Select whether to search posts having whole or partial word being searched."
830
  msgstr ""
831
 
832
+ #: ../admin/class-is-editor.php:1427
833
  msgid "Whole - Search posts that include the whole search term"
834
  msgstr ""
835
 
836
+ #: ../admin/class-is-editor.php:1429
837
  msgid ""
838
  "Partial - Also search words in the posts that begins or ends with the search "
839
  "term"
840
  msgstr ""
841
 
842
+ #: ../admin/class-is-editor.php:1435
843
  msgid "Keyword Stemming"
844
  msgstr ""
845
 
846
+ #: ../admin/class-is-editor.php:1439
847
  msgid "Select whether to search the base word of a searched keyword."
848
  msgstr ""
849
 
850
+ #: ../admin/class-is-editor.php:1440
851
  msgid ""
852
  "For Example: If you search \"doing\" then it also searches base word of "
853
  "\"doing\" that is \"do\" in the specified post types."
854
  msgstr ""
855
 
856
+ #: ../admin/class-is-editor.php:1441
857
  msgid "Not recommended to use when Fuzzy Matching option is set to Whole."
858
  msgstr ""
859
 
860
+ #: ../admin/class-is-editor.php:1447
861
  msgid "Also search base word of searched keyword"
862
  msgstr ""
863
 
864
+ #: ../admin/class-is-editor.php:1454
865
  msgid "Sticky Posts"
866
  msgstr ""
867
 
868
+ #: ../admin/class-is-editor.php:1460
869
  msgid "Display sticky posts to the start of the search results page"
870
  msgstr ""
871
 
872
+ #: ../admin/class-is-editor.php:1466
873
  msgid "Empty Search Query"
874
  msgstr ""
875
 
876
+ #: ../admin/class-is-editor.php:1469
877
  msgid ""
878
  "Select whether to display an error when user perform search without any "
879
  "search word."
880
  msgstr ""
881
 
882
+ #: ../admin/class-is-editor.php:1474
883
  msgid "Display an error for empty search query"
884
  msgstr ""
885
 
886
+ #: ../admin/class-is-editor.php:1479
887
  msgid "Demo Search"
888
  msgstr ""
889
 
890
+ #: ../admin/class-is-editor.php:1485
891
  msgid "Display search form only for site administrator"
892
  msgstr ""
893
 
894
+ #: ../admin/class-is-editor.php:1491 ../admin/class-is-settings-fields.php:165
895
  msgid "Disable Search"
896
  msgstr ""
897
 
898
+ #: ../admin/class-is-editor.php:1497
899
  msgid "Disable this search form"
900
  msgstr ""
901
 
1066
  msgstr ""
1067
 
1068
  #: ../admin/class-is-list-table.php:158
1069
+ #: ../admin/class-is-settings-fields.php:380
1070
+ #: ../admin/class-is-settings-fields.php:412
1071
  #: ../includes/class-is-search-form.php:503 ../includes/class-is-widget.php:69
1072
  msgid "Edit"
1073
  msgstr ""
1095
  msgid "d/m/Y"
1096
  msgstr ""
1097
 
1098
+ #: ../admin/class-is-settings-fields.php:144
1099
  msgid "Select Menu"
1100
  msgstr ""
1101
 
1102
+ #: ../admin/class-is-settings-fields.php:145
1103
  #: ../includes/class-is-search-form.php:60
1104
  msgid "Search Form"
1105
  msgstr ""
1106
 
1107
+ #: ../admin/class-is-settings-fields.php:146
1108
  msgid "Form Style"
1109
  msgstr ""
1110
 
1111
+ #: ../admin/class-is-settings-fields.php:147
1112
  msgid "Menu Title"
1113
  msgstr ""
1114
 
1115
+ #: ../admin/class-is-settings-fields.php:148
1116
  msgid "Menu Classes"
1117
  msgstr ""
1118
 
1119
+ #: ../admin/class-is-settings-fields.php:149
1120
  msgid "Google CSE"
1121
  msgstr ""
1122
 
1123
+ #: ../admin/class-is-settings-fields.php:150
1124
  msgid "Close Icon"
1125
  msgstr ""
1126
 
1127
+ #: ../admin/class-is-settings-fields.php:158
1128
  msgid "Header Search"
1129
  msgstr ""
1130
 
1131
+ #: ../admin/class-is-settings-fields.php:159
1132
  msgid "Footer Search"
1133
  msgstr ""
1134
 
1135
+ #: ../admin/class-is-settings-fields.php:160
1136
  msgid "Mobile Search"
1137
  msgstr ""
1138
 
1139
+ #: ../admin/class-is-settings-fields.php:161
1140
  msgid "Custom CSS"
1141
  msgstr ""
1142
 
1143
+ #: ../admin/class-is-settings-fields.php:162
1144
  msgid "Stopwords"
1145
  msgstr ""
1146
 
1147
+ #: ../admin/class-is-settings-fields.php:163
1148
  msgid "Synonyms"
1149
  msgstr ""
1150
 
1151
+ #: ../admin/class-is-settings-fields.php:164
1152
  msgid "Do Not Load Plugin Files"
1153
  msgstr ""
1154
 
1155
+ #: ../admin/class-is-settings-fields.php:166
1156
  msgid "Default Search"
1157
  msgstr ""
1158
 
1159
+ #: ../admin/class-is-settings-fields.php:176
1160
  msgid "Display search in menu and configure it using below options."
1161
  msgstr ""
1162
 
1163
+ #: ../admin/class-is-settings-fields.php:183
1164
  msgid "Make search changes on entire website using below options."
1165
  msgstr ""
1166
 
1167
+ #: ../admin/class-is-settings-fields.php:191
1168
  msgid "Display search form on selected menu."
1169
  msgstr ""
1170
 
1171
+ #: ../admin/class-is-settings-fields.php:212
1172
  #, php-format
1173
  msgid "Please assign menu to navigation menu location in the %sMenus screen%s."
1174
  msgstr ""
1175
 
1176
+ #: ../admin/class-is-settings-fields.php:215
1177
  msgid "Navigation menu location is not registered on the site."
1178
  msgstr ""
1179
 
1180
+ #: ../admin/class-is-settings-fields.php:225
1181
  msgid "Select search form that will control menu search functionality."
1182
  msgstr ""
1183
 
1184
+ #: ../admin/class-is-settings-fields.php:259
1185
+ #: ../admin/class-is-settings-fields.php:382
1186
+ #: ../admin/class-is-settings-fields.php:414 ../includes/class-is-widget.php:71
1187
  msgid "Create New"
1188
  msgstr ""
1189
 
1190
+ #: ../admin/class-is-settings-fields.php:271
1191
  msgid "Select menu search form style."
1192
  msgstr ""
1193
 
1194
+ #: ../admin/class-is-settings-fields.php:275
1195
  msgid "Default"
1196
  msgstr ""
1197
 
1198
+ #: ../admin/class-is-settings-fields.php:276
1199
  msgid "Dropdown"
1200
  msgstr ""
1201
 
1202
+ #: ../admin/class-is-settings-fields.php:277
1203
  msgid "Sliding"
1204
  msgstr ""
1205
 
1206
+ #: ../admin/class-is-settings-fields.php:278
1207
  msgid "Full Width"
1208
  msgstr ""
1209
 
1210
+ #: ../admin/class-is-settings-fields.php:279
1211
  msgid "Popup"
1212
  msgstr ""
1213
 
1214
+ #: ../admin/class-is-settings-fields.php:304
1215
  msgid "Add menu title to display in place of search icon."
1216
  msgstr ""
1217
 
1218
+ #: ../admin/class-is-settings-fields.php:316
1219
  msgid "Add class to search form menu item."
1220
  msgstr ""
1221
 
1222
+ #: ../admin/class-is-settings-fields.php:321
1223
  msgid "Add multiple classes seperated by space."
1224
  msgstr ""
1225
 
1226
+ #: ../admin/class-is-settings-fields.php:329
1227
  msgid ""
1228
  "Add Google Custom Search( CSE ) search form code that will replace default "
1229
  "search form."
1230
  msgstr ""
1231
 
1232
+ #: ../admin/class-is-settings-fields.php:352
1233
  msgid "Display search form close icon"
1234
  msgstr ""
1235
 
1236
+ #: ../admin/class-is-settings-fields.php:361
1237
  msgid "Select search form to display in site header."
1238
  msgstr ""
1239
 
1240
+ #: ../admin/class-is-settings-fields.php:373
1241
+ #: ../admin/class-is-settings-fields.php:405 ../includes/class-is-widget.php:62
1242
  msgid "none"
1243
  msgstr ""
1244
 
1245
+ #: ../admin/class-is-settings-fields.php:393
1246
  msgid "Select search form to display in site footer."
1247
  msgstr ""
1248
 
1249
+ #: ../admin/class-is-settings-fields.php:434
1250
  msgid "Display search form in site header on mobile devices"
1251
  msgstr ""
1252
 
1253
+ #: ../admin/class-is-settings-fields.php:437
1254
  msgid ""
1255
  "If this site uses cache then please select the below option to display "
1256
  "search form on mobile."
1257
  msgstr ""
1258
 
1259
+ #: ../admin/class-is-settings-fields.php:450
1260
  msgid "This site uses cache"
1261
  msgstr ""
1262
 
1263
+ #: ../admin/class-is-settings-fields.php:458
1264
  msgid "Add custom css code."
1265
  msgstr ""
1266
 
1267
+ #: ../admin/class-is-settings-fields.php:471
1268
  msgid "Enter stopwords here that will not be searched."
1269
  msgstr ""
1270
 
1271
+ #: ../admin/class-is-settings-fields.php:475
1272
  msgid "Please separate multiple words with commas."
1273
  msgstr ""
1274
 
1275
+ #: ../admin/class-is-settings-fields.php:483
1276
  msgid "Add synonyms here to make the searches find better results."
1277
  msgstr ""
1278
 
1279
+ #: ../admin/class-is-settings-fields.php:484
1280
  msgid ""
1281
  "If you add bird = crow to the list of synonyms, searches for bird "
1282
  "automatically become a search for bird crow and will thus match to posts "
1283
  "that include either bird or crow."
1284
  msgstr ""
1285
 
1286
+ #: ../admin/class-is-settings-fields.php:485
 
 
 
 
 
 
 
 
1287
  msgid ""
1288
  "This only works for search forms configured to search any of the search "
1289
  "terms(OR) and not all search terms(AND)."
1290
  msgstr ""
1291
 
1292
+ #: ../admin/class-is-settings-fields.php:490
1293
+ msgid "The format here is key = value;"
1294
+ msgstr ""
1295
+
1296
+ #: ../admin/class-is-settings-fields.php:491
1297
+ msgid "Please separate every synonyms key = value pairs with semicolon."
1298
  msgstr ""
1299
 
1300
+ #: ../admin/class-is-settings-fields.php:501
1301
  msgid ""
1302
  "Enable below options to disable loading of plugin CSS and JavaScript files."
1303
  msgstr ""
1304
 
1305
+ #: ../admin/class-is-settings-fields.php:505
1306
  msgid "Plugin CSS files"
1307
  msgstr ""
1308
 
1309
+ #: ../admin/class-is-settings-fields.php:506
1310
  msgid "Plugin JavaScript files"
1311
  msgstr ""
1312
 
1313
+ #: ../admin/class-is-settings-fields.php:526
1314
  msgid ""
1315
  "If checked, you have to add following plugin file code into your child theme "
1316
  "CSS file."
1317
  msgstr ""
1318
 
1319
+ #: ../admin/class-is-settings-fields.php:530
1320
  msgid ""
1321
  "If checked, you have to add following plugin files code into your child "
1322
  "theme JavaScript file."
1323
  msgstr ""
1324
 
1325
+ #: ../admin/class-is-settings-fields.php:546
1326
  msgid "Disable search functionality on entire website"
1327
  msgstr ""
1328
 
1329
+ #: ../admin/class-is-settings-fields.php:557
1330
  msgid ""
1331
  "Do not use Default Search Form to control WordPress default search "
1332
  "functionality"
1337
  msgstr ""
1338
 
1339
  #: ../admin/partials/search-form.php:80
1340
+ msgid "Editing the title of Default Search Form is restricted."
1341
  msgstr ""
1342
 
1343
  #: ../admin/partials/search-form.php:92
public/class-is-public.php CHANGED
@@ -637,9 +637,8 @@ class IS_Public
637
  }
638
 
639
  $terms_relation_type = 'AND';
640
- $use_synonyms = true;
641
 
642
- if ( isset( $this->opt['synonyms'] ) && $use_synonyms ) {
643
  $pairs = explode( ';', $this->opt['synonyms'] );
644
  foreach ( $pairs as $pair ) {
645
  if ( empty($pair) ) {
@@ -906,6 +905,13 @@ class IS_Public
906
  if ( isset( $this->opt['footer_search'] ) && $this->opt['footer_search'] ) {
907
  echo do_shortcode( '[ivory-search id="' . $this->opt['footer_search'] . '"]' ) ;
908
  }
 
 
 
 
 
 
 
909
  }
910
 
911
  }
637
  }
638
 
639
  $terms_relation_type = 'AND';
 
640
 
641
+ if ( isset( $this->opt['synonyms'] ) && 'OR' === $terms_relation_type ) {
642
  $pairs = explode( ';', $this->opt['synonyms'] );
643
  foreach ( $pairs as $pair ) {
644
  if ( empty($pair) ) {
905
  if ( isset( $this->opt['footer_search'] ) && $this->opt['footer_search'] ) {
906
  echo do_shortcode( '[ivory-search id="' . $this->opt['footer_search'] . '"]' ) ;
907
  }
908
+
909
+ if ( isset( $this->opt['menu_style'] ) && 'popup' === $this->opt['menu_style'] ) {
910
+ echo '<div id="is-popup-wrapper" style="display:none"><div class="popup-search-close"></div><div class="is-popup-search-form">' ;
911
+ $this->get_menu_search_form();
912
+ echo '</div></div>' ;
913
+ }
914
+
915
  }
916
 
917
  }
public/css/ivory-search.css CHANGED
@@ -19,7 +19,7 @@
19
  }
20
 
21
  .is-menu.default form {
22
- max-width: 100%;
23
  position: static;
24
  }
25
 
@@ -162,6 +162,10 @@
162
  right: auto;
163
  }
164
 
 
 
 
 
165
  .is-menu.full-width-menu.active-search {
166
  position: relative;
167
  }
19
  }
20
 
21
  .is-menu.default form {
22
+ max-width: 310px;
23
  position: static;
24
  }
25
 
162
  right: auto;
163
  }
164
 
165
+ .is-menu.default form{
166
+ max-width: 100%;
167
+ }
168
+
169
  .is-menu.full-width-menu.active-search {
170
  position: relative;
171
  }
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.2
7
  Requires PHP: 5.2.4
8
- Stable tag: 4.3.2
9
  License: GPLv2 or later
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -192,6 +192,12 @@ Yes we do. We try our best to help free users with customisation requests and we
192
 
193
  == Changelog ==
194
 
 
 
 
 
 
 
195
  = 4.3.2 =
196
  * Improved - Plugin admin area functionality.
197
 
5
  Requires at least: 3.9
6
  Tested up to: 5.2
7
  Requires PHP: 5.2.4
8
+ Stable tag: 4.3.3
9
  License: GPLv2 or later
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
 
192
 
193
  == Changelog ==
194
 
195
+ = 4.3.3 =
196
+ * Fixed - header already sent issue displayed in the search forms admin page.
197
+ * Fixed - Default style menu search form width issue.
198
+ * Made Free - Menu search form Popup style.
199
+ * Removed - "Disable synonyms for the search forms configured to search all search terms" option.
200
+
201
  = 4.3.2 =
202
  * Improved - Plugin admin area functionality.
203