Version Description
- Added - Option to track searches in google search analytics.
Download this release
Release Info
Developer | vinod dalvi |
Plugin | Ivory Search – WordPress Search Plugin |
Version | 4.5 |
Comparing to | |
See all releases |
Code changes from version 4.4.14 to 4.5
- add-search-to-menu.php +2 -2
- admin/class-is-editor.php +35 -25
- admin/class-is-settings-fields.php +62 -0
- admin/js/ivory-search-admin.js +12 -0
- admin/partials/settings-form.php +8 -1
- languages/add-search-to-menu.pot +322 -248
- public/class-is-public.php +28 -1
- public/js/ivory-ajax-search.js +4 -1
- public/js/ivory-search.js +35 -1
- readme.txt +4 -1
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.
|
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.
|
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.5
|
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.5' );
|
111 |
}
|
112 |
if ( ! defined( 'IS_PLUGIN_FILE' ) ) {
|
113 |
define( 'IS_PLUGIN_FILE', __FILE__ );
|
admin/class-is-editor.php
CHANGED
@@ -256,14 +256,14 @@ class IS_Search_Editor
|
|
256 |
if ( count( $posts ) >= 100 && !defined( 'DISABLE_IS_LOAD_ALL' ) && !isset( $includes['post__in'] ) ) {
|
257 |
$html .= '<div id="' . $post_type . '" class="load-all">' . __( 'Load All', 'add-search-to-menu' ) . '</div>';
|
258 |
}
|
259 |
-
$html .= '</div
|
260 |
}
|
261 |
|
262 |
|
263 |
if ( !$posts_found ) {
|
264 |
-
$html .= '<
|
265 |
} else {
|
266 |
-
$html .= '<
|
267 |
}
|
268 |
|
269 |
$html .= '</div>';
|
@@ -277,14 +277,19 @@ class IS_Search_Editor
|
|
277 |
}
|
278 |
}
|
279 |
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
|
|
|
|
|
|
|
|
284 |
echo $html ;
|
285 |
$tax_objs = get_object_taxonomies( $post_type, 'objects' );
|
286 |
|
287 |
if ( !empty($tax_objs) ) {
|
|
|
288 |
$html = '<div class="is-taxes">';
|
289 |
$selected_tax = false;
|
290 |
foreach ( $tax_objs as $key => $tax_obj ) {
|
@@ -293,6 +298,7 @@ class IS_Search_Editor
|
|
293 |
) );
|
294 |
|
295 |
if ( !empty($terms) ) {
|
|
|
296 |
$html .= '<div class="col-wrapper"><div class="col-title">';
|
297 |
$col_title = ucwords( str_replace( '-', ' ', str_replace( '_', ' ', esc_html( $tax_obj->labels->name ) ) ) );
|
298 |
|
@@ -311,24 +317,28 @@ class IS_Search_Editor
|
|
311 |
}
|
312 |
|
313 |
}
|
314 |
-
|
315 |
-
$
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
|
|
|
|
|
|
|
|
332 |
}
|
333 |
|
334 |
$meta_keys = $this->is_meta_keys( $post_type );
|
256 |
if ( count( $posts ) >= 100 && !defined( 'DISABLE_IS_LOAD_ALL' ) && !isset( $includes['post__in'] ) ) {
|
257 |
$html .= '<div id="' . $post_type . '" class="load-all">' . __( 'Load All', 'add-search-to-menu' ) . '</div>';
|
258 |
}
|
259 |
+
$html .= '</div><br />';
|
260 |
}
|
261 |
|
262 |
|
263 |
if ( !$posts_found ) {
|
264 |
+
$html .= '<span class="notice-is-info">' . sprintf( __( 'No %s created.', 'add-search-to-menu' ), $post_types[$post_type]->labels->name ) . '</span>';
|
265 |
} else {
|
266 |
+
$html .= '<label for="' . $id . '-post__in" class="ctrl-multi-select">' . esc_html__( "Hold down the control (ctrl) or command button to select multiple options.", 'add-search-to-menu' ) . '</label><br />';
|
267 |
}
|
268 |
|
269 |
$html .= '</div>';
|
277 |
}
|
278 |
}
|
279 |
|
280 |
+
|
281 |
+
if ( $posts_found ) {
|
282 |
+
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 ) . '/>' ;
|
283 |
+
echo '<span class="toggle-check-text"></span>' . sprintf( esc_html__( "Search all %s", 'add-search-to-menu' ), strtolower( $post_types[$post_type]->labels->name ) ) . '</label></p>' ;
|
284 |
+
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 ) . '/>' ;
|
285 |
+
echo '<span class="toggle-check-text"></span>' . sprintf( esc_html__( "Search only selected %s", 'add-search-to-menu' ), strtolower( $post_types[$post_type]->labels->name ) ) . '</label></p>' ;
|
286 |
+
}
|
287 |
+
|
288 |
echo $html ;
|
289 |
$tax_objs = get_object_taxonomies( $post_type, 'objects' );
|
290 |
|
291 |
if ( !empty($tax_objs) ) {
|
292 |
+
$terms_exist = false;
|
293 |
$html = '<div class="is-taxes">';
|
294 |
$selected_tax = false;
|
295 |
foreach ( $tax_objs as $key => $tax_obj ) {
|
298 |
) );
|
299 |
|
300 |
if ( !empty($terms) ) {
|
301 |
+
$terms_exist = true;
|
302 |
$html .= '<div class="col-wrapper"><div class="col-title">';
|
303 |
$col_title = ucwords( str_replace( '-', ' ', str_replace( '_', ' ', esc_html( $tax_obj->labels->name ) ) ) );
|
304 |
|
317 |
}
|
318 |
|
319 |
}
|
320 |
+
|
321 |
+
if ( $terms_exist ) {
|
322 |
+
$html .= '<br /><label for="' . $id . '-tax_query" class="ctrl-multi-select">' . esc_html__( "Hold down the control (ctrl) or command button to select multiple options.", 'add-search-to-menu' ) . '</label><br />';
|
323 |
+
$html .= '</div>';
|
324 |
+
$checked = ( $selected_tax ? 'selected' : 'all' );
|
325 |
+
echo '<br /><p class="check-radio"><label for="' . $post_type . '-tax-search_all" ><input class="is-tax-select" type="radio" id="' . $post_type . '-tax-search_all" name="' . $post_type . '[tax_search_radio]" value="all" ' . checked( 'all', $checked, false ) . '/>' ;
|
326 |
+
echo '<span class="toggle-check-text"></span>' . sprintf(
|
327 |
+
esc_html__( "Search %s of all taxonomies (%s categories, tags & terms %s)", 'add-search-to-menu' ),
|
328 |
+
strtolower( $post_types[$post_type]->labels->name ),
|
329 |
+
'<i>',
|
330 |
+
'</i>'
|
331 |
+
) . '</label></p>' ;
|
332 |
+
echo '<p class="check-radio"><label for="' . $post_type . '-tax-search_selected" ><input class="is-tax-select" type="radio" id="' . $post_type . '-tax-search_selected" name="' . $post_type . '[tax_search_radio]" value="selected" ' . checked( 'selected', $checked, false ) . '/>' ;
|
333 |
+
echo '<span class="toggle-check-text"></span>' . sprintf(
|
334 |
+
esc_html__( "Search %s of only selected taxonomies (%s categories, tags & terms %s)", 'add-search-to-menu' ),
|
335 |
+
strtolower( $post_types[$post_type]->labels->name ),
|
336 |
+
'<i>',
|
337 |
+
'</i>'
|
338 |
+
) . '</label></p>' ;
|
339 |
+
echo $html ;
|
340 |
+
}
|
341 |
+
|
342 |
}
|
343 |
|
344 |
$meta_keys = $this->is_meta_keys( $post_type );
|
admin/class-is-settings-fields.php
CHANGED
@@ -111,12 +111,21 @@ class IS_Settings_Fields
|
|
111 |
function register_settings_fields()
|
112 |
{
|
113 |
if ( !empty($GLOBALS['pagenow']) && 'options.php' === $GLOBALS['pagenow'] ) {
|
|
|
114 |
if ( isset( $_POST['is_menu_search'] ) ) {
|
115 |
add_filter( 'whitelist_options', function ( $whitelist_options ) {
|
116 |
$whitelist_options['ivory_search'][0] = 'is_menu_search';
|
117 |
return $whitelist_options;
|
118 |
} );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
119 |
}
|
|
|
120 |
}
|
121 |
|
122 |
if ( !isset( $_GET['tab'] ) || 'settings' == $_GET['tab'] ) {
|
@@ -200,6 +209,25 @@ class IS_Settings_Fields
|
|
200 |
'ivory_search_section'
|
201 |
);
|
202 |
register_setting( 'ivory_search', 'is_menu_search' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
203 |
}
|
204 |
|
205 |
}
|
@@ -214,6 +242,14 @@ class IS_Settings_Fields
|
|
214 |
echo '<h4 class="panel-desc">' . __( 'Display search in menu and configure it using below options.', 'add-search-to-menu' ) . '</h4>' ;
|
215 |
}
|
216 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
217 |
/**
|
218 |
* Displays Settings section description text.
|
219 |
*/
|
@@ -389,6 +425,32 @@ class IS_Settings_Fields
|
|
389 |
echo '<div>' . $html . '</div></div>' ;
|
390 |
}
|
391 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
392 |
/**
|
393 |
* Displays search form in site header.
|
394 |
*/
|
111 |
function register_settings_fields()
|
112 |
{
|
113 |
if ( !empty($GLOBALS['pagenow']) && 'options.php' === $GLOBALS['pagenow'] ) {
|
114 |
+
|
115 |
if ( isset( $_POST['is_menu_search'] ) ) {
|
116 |
add_filter( 'whitelist_options', function ( $whitelist_options ) {
|
117 |
$whitelist_options['ivory_search'][0] = 'is_menu_search';
|
118 |
return $whitelist_options;
|
119 |
} );
|
120 |
+
} else {
|
121 |
+
if ( isset( $_POST['is_analytics'] ) ) {
|
122 |
+
add_filter( 'whitelist_options', function ( $whitelist_options ) {
|
123 |
+
$whitelist_options['ivory_search'][0] = 'is_analytics';
|
124 |
+
return $whitelist_options;
|
125 |
+
} );
|
126 |
+
}
|
127 |
}
|
128 |
+
|
129 |
}
|
130 |
|
131 |
if ( !isset( $_GET['tab'] ) || 'settings' == $_GET['tab'] ) {
|
209 |
'ivory_search_section'
|
210 |
);
|
211 |
register_setting( 'ivory_search', 'is_menu_search' );
|
212 |
+
} else {
|
213 |
+
|
214 |
+
if ( isset( $_GET['tab'] ) && 'analytics' == $_GET['tab'] ) {
|
215 |
+
add_settings_section(
|
216 |
+
'ivory_search_analytics',
|
217 |
+
'',
|
218 |
+
array( $this, 'analytics_section_desc' ),
|
219 |
+
'ivory_search'
|
220 |
+
);
|
221 |
+
add_settings_field(
|
222 |
+
'ivory_search_analytics_fields',
|
223 |
+
__( 'Search Analytics', 'add-search-to-menu' ),
|
224 |
+
array( $this, 'analytics' ),
|
225 |
+
'ivory_search',
|
226 |
+
'ivory_search_analytics'
|
227 |
+
);
|
228 |
+
register_setting( 'ivory_search', 'is_analytics' );
|
229 |
+
}
|
230 |
+
|
231 |
}
|
232 |
|
233 |
}
|
242 |
echo '<h4 class="panel-desc">' . __( 'Display search in menu and configure it using below options.', 'add-search-to-menu' ) . '</h4>' ;
|
243 |
}
|
244 |
|
245 |
+
/**
|
246 |
+
* Displays Analytics section description text.
|
247 |
+
*/
|
248 |
+
function analytics_section_desc()
|
249 |
+
{
|
250 |
+
echo '<h4 class="panel-desc">' . __( 'Configure search analytics settings.', 'add-search-to-menu' ) . '</h4>' ;
|
251 |
+
}
|
252 |
+
|
253 |
/**
|
254 |
* Displays Settings section description text.
|
255 |
*/
|
425 |
echo '<div>' . $html . '</div></div>' ;
|
426 |
}
|
427 |
|
428 |
+
/**
|
429 |
+
* Displays search analytics fields.
|
430 |
+
*/
|
431 |
+
function analytics()
|
432 |
+
{
|
433 |
+
$is_analytics = get_option( 'is_analytics', array() );
|
434 |
+
$check_value = ( isset( $is_analytics['disable_analytics'] ) ? $is_analytics['disable_analytics'] : 0 );
|
435 |
+
$html = '<label for="is_disable_analytics"><select class="ivory_search_disable_analytics" id="is_disable_analytics" name="is_analytics[disable_analytics]" >';
|
436 |
+
$html .= '<option value="0" ' . selected( 0, $check_value, false ) . '>' . __( 'Enabled', 'add-search-to-menu' ) . '</option>';
|
437 |
+
$html .= '<option value="1"' . selected( 1, $check_value, false ) . ' >' . __( 'Disabled', 'add-search-to-menu' ) . '</option>';
|
438 |
+
$html .= '</select> ' . esc_html__( 'Google Analytics tracking for searches', 'add-search-to-menu' ) . '</label>';
|
439 |
+
echo '<div>' . $html ;
|
440 |
+
echo '<div class="analytics-info"><br/><br/><p>' . __( 'Uses Google Analytics to track searches.', 'add-search-to-menu' ) . '</p>' ;
|
441 |
+
echo '<p>' . sprintf( __( "You need %s Google Analytics %s to be installed on your site.", 'add-search-to-menu' ), "<a target='_blank' href='https://developers.google.com/analytics/devguides/collection/analyticsjs/'>", '</a>' ) . '</p>' ;
|
442 |
+
echo '<p>' . __( "Data will be visible inside Google Analytics 'Events' and 'Site Search' report.", 'add-search-to-menu' ) . '</p>' ;
|
443 |
+
echo '<br/><p>' . __( "Events will be as below:", 'add-search-to-menu' ) . '</p>' ;
|
444 |
+
echo '<p><b>' . __( "Category - Results Found / Nothing Found", 'add-search-to-menu' ) . '</b></p>' ;
|
445 |
+
echo '<p><b>' . __( "Action - Ivory Search - ID", 'add-search-to-menu' ) . '</b></p>' ;
|
446 |
+
echo '<p><b>' . __( "Label - Value of search term", 'add-search-to-menu' ) . '</b></p>' ;
|
447 |
+
echo '<br/><p>' . sprintf( __( "Need to %s activate Site Search feature %s inside Google Analytics to display data inside 'Site Search' report.", 'add-search-to-menu' ), "<a target='_blank' href='https://support.google.com/analytics/answer/1012264'>", '</a>' ) . '</p>' ;
|
448 |
+
echo '<p>' . __( "Enable Site search Tracking option in Site Search Settings and set its parameters as below.", 'add-search-to-menu' ) . '</p>' ;
|
449 |
+
echo '<p><b>' . __( "Query parameter - s", 'add-search-to-menu' ) . '</b></p>' ;
|
450 |
+
echo '<p><b>' . __( "Category parameter - id / result", 'add-search-to-menu' ) . '</b></p>' ;
|
451 |
+
echo '</div></div>' ;
|
452 |
+
}
|
453 |
+
|
454 |
/**
|
455 |
* Displays search form in site header.
|
456 |
*/
|
admin/js/ivory-search-admin.js
CHANGED
@@ -681,4 +681,16 @@
|
|
681 |
|
682 |
} );
|
683 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
684 |
} )( jQuery );
|
681 |
|
682 |
} );
|
683 |
|
684 |
+
function toggle_analytics_info(){
|
685 |
+
if ( '1' === $( '#is_disable_analytics' ).val() ) {
|
686 |
+
$( '#is_disable_analytics' ).closest( 'div' ).find( '.analytics-info' ).hide();
|
687 |
+
} else {
|
688 |
+
$( '#is_disable_analytics' ).closest( 'div' ).find( '.analytics-info' ).show();
|
689 |
+
}
|
690 |
+
}
|
691 |
+
toggle_analytics_info();
|
692 |
+
|
693 |
+
$('#is_disable_analytics').on('click', function() {
|
694 |
+
toggle_analytics_info();
|
695 |
+
} );
|
696 |
} )( jQuery );
|
admin/partials/settings-form.php
CHANGED
@@ -43,7 +43,12 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
43 |
'menu-search',
|
44 |
'Menu Search',
|
45 |
'Display & configure search in menu',
|
46 |
-
)
|
|
|
|
|
|
|
|
|
|
|
47 |
);
|
48 |
|
49 |
echo '<ul id="search-form-editor-tabs">';
|
@@ -65,6 +70,8 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
65 |
$settings_fields->is_do_settings_sections( 'ivory_search', 'ivory_search_settings' );
|
66 |
} else if ( 'menu-search' == $tab ) {
|
67 |
$settings_fields->is_do_settings_sections( 'ivory_search', 'ivory_search_section' );
|
|
|
|
|
68 |
}
|
69 |
|
70 |
?>
|
43 |
'menu-search',
|
44 |
'Menu Search',
|
45 |
'Display & configure search in menu',
|
46 |
+
),
|
47 |
+
'analytics' => array(
|
48 |
+
'analytics',
|
49 |
+
'Analytics',
|
50 |
+
'Track searched keywords & search results',
|
51 |
+
),
|
52 |
);
|
53 |
|
54 |
echo '<ul id="search-form-editor-tabs">';
|
70 |
$settings_fields->is_do_settings_sections( 'ivory_search', 'ivory_search_settings' );
|
71 |
} else if ( 'menu-search' == $tab ) {
|
72 |
$settings_fields->is_do_settings_sections( 'ivory_search', 'ivory_search_section' );
|
73 |
+
} else if ( 'analytics' == $tab ) {
|
74 |
+
$settings_fields->is_do_settings_sections( 'ivory_search', 'ivory_search_analytics' );
|
75 |
}
|
76 |
|
77 |
?>
|
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-
|
6 |
"PO-Revision-Date: 2020-03-17 21:05+0530\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Ivory Search <admin@ivorysearch.com>\n"
|
@@ -21,7 +21,7 @@ msgstr ""
|
|
21 |
msgid "The changes you made will be lost if you navigate away from this page."
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: ../admin/class-is-admin.php:140 ../admin/class-is-settings-fields.php:
|
25 |
#: ../admin/partials/search-form.php:23
|
26 |
msgid "Edit Search Form"
|
27 |
msgstr ""
|
@@ -45,7 +45,7 @@ msgstr ""
|
|
45 |
|
46 |
#: ../admin/class-is-admin.php:185 ../admin/class-is-help.php:111
|
47 |
#: ../admin/partials/search-form.php:200
|
48 |
-
#: ../admin/partials/settings-form.php:
|
49 |
msgid "Support"
|
50 |
msgstr ""
|
51 |
|
@@ -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:
|
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:
|
242 |
-
#: ../admin/class-is-editor.php:
|
243 |
-
#: ../admin/class-is-editor.php:
|
244 |
-
#: ../admin/class-is-editor.php:
|
245 |
-
#: ../admin/class-is-editor.php:
|
246 |
msgid "Expand All"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: ../admin/class-is-editor.php:114 ../admin/class-is-editor.php:
|
250 |
-
#: ../admin/class-is-editor.php:
|
251 |
-
#: ../admin/class-is-editor.php:
|
252 |
-
#: ../admin/class-is-editor.php:
|
253 |
-
#: ../admin/class-is-editor.php:
|
254 |
msgid "Collapse All"
|
255 |
msgstr ""
|
256 |
|
@@ -270,34 +270,34 @@ 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:
|
274 |
msgid "( WooCommerce )"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: ../admin/class-is-editor.php:169 ../admin/class-is-editor.php:
|
278 |
msgid "( Images, Videos, Audios, Docs, PDFs, Files & Attachments )"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: ../admin/class-is-editor.php:211 ../admin/class-is-editor.php:
|
282 |
-
#: ../admin/class-is-editor.php:
|
283 |
-
#: ../admin/class-is-editor.php:
|
284 |
-
#: ../admin/class-is-editor.php:
|
285 |
msgid "Search.."
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: ../admin/class-is-editor.php:215 ../admin/class-is-editor.php:
|
289 |
msgid "Load All"
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: ../admin/class-is-editor.php:220 ../admin/class-is-editor.php:
|
293 |
#, php-format
|
294 |
msgid "No %s created."
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: ../admin/class-is-editor.php:222 ../admin/class-is-editor.php:
|
298 |
-
#: ../admin/class-is-editor.php:
|
299 |
-
#: ../admin/class-is-editor.php:
|
300 |
-
#: ../admin/class-is-editor.php:
|
301 |
msgid ""
|
302 |
"Hold down the control (ctrl) or command button to select multiple options."
|
303 |
msgstr ""
|
@@ -309,683 +309,683 @@ msgid ""
|
|
309 |
"specific posts of another post type."
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: ../admin/class-is-editor.php:
|
313 |
#, php-format
|
314 |
msgid "Search all %s"
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: ../admin/class-is-editor.php:
|
318 |
#, php-format
|
319 |
msgid "Search only selected %s"
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: ../admin/class-is-editor.php:
|
323 |
#, php-format
|
324 |
msgid "Search %s of all taxonomies (%s categories, tags & terms %s)"
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: ../admin/class-is-editor.php:
|
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:
|
333 |
#, php-format
|
334 |
msgid "Search selected %s custom fields values"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: ../admin/class-is-editor.php:
|
338 |
msgid "Search product SKU"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: ../admin/class-is-editor.php:
|
342 |
msgid "Search product variation"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: ../admin/class-is-editor.php:
|
346 |
msgid "Selected File Types :"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: ../admin/class-is-editor.php:
|
350 |
msgid "Search all MIME types"
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: ../admin/class-is-editor.php:
|
354 |
msgid "Search only selected MIME types"
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: ../admin/class-is-editor.php:
|
358 |
msgid "Search Images"
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: ../admin/class-is-editor.php:
|
362 |
msgid "Search Videos"
|
363 |
msgstr ""
|
364 |
|
365 |
-
#: ../admin/class-is-editor.php:
|
366 |
msgid "Search Audios"
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: ../admin/class-is-editor.php:
|
370 |
msgid "Search Text Files"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: ../admin/class-is-editor.php:
|
374 |
msgid "Search PDF Files"
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: ../admin/class-is-editor.php:
|
378 |
msgid "Search Document Files"
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: ../admin/class-is-editor.php:
|
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:
|
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:
|
395 |
-
#: ../admin/class-is-editor.php:
|
396 |
msgid "Date"
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: ../admin/class-is-editor.php:
|
400 |
msgid "Search posts created only in the specified date range."
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: ../admin/class-is-editor.php:
|
404 |
msgid "From"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: ../admin/class-is-editor.php:
|
408 |
msgid "To"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: ../admin/class-is-editor.php:
|
412 |
msgid "Authors"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: ../admin/class-is-editor.php:
|
416 |
msgid "Search posts created by selected authors."
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: ../admin/class-is-editor.php:
|
420 |
msgid "Searches all author posts"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: ../admin/class-is-editor.php:
|
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:
|
431 |
msgid "Search author Display Name and display the posts created by that author"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: ../admin/class-is-editor.php:
|
435 |
msgid "Comments"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: ../admin/class-is-editor.php:
|
439 |
msgid "Search posts by configured comments."
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: ../admin/class-is-editor.php:
|
443 |
msgid "Search posts having number of comments"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: ../admin/class-is-editor.php:
|
447 |
msgid "NA"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: ../admin/class-is-editor.php:
|
451 |
msgid "Search approved comment content"
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: ../admin/class-is-editor.php:
|
455 |
msgid "Post Status"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: ../admin/class-is-editor.php:
|
459 |
msgid "Search posts having selected post statuses."
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: ../admin/class-is-editor.php:
|
463 |
msgid "Select Post Status"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: ../admin/class-is-editor.php:
|
467 |
msgid "Password Protected"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: ../admin/class-is-editor.php:
|
471 |
msgid "Search posts with or without passwords"
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: ../admin/class-is-editor.php:
|
475 |
msgid "Search posts with passwords"
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: ../admin/class-is-editor.php:
|
479 |
msgid "Search posts without passwords"
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: ../admin/class-is-editor.php:
|
483 |
-
#: ../admin/class-is-settings-fields.php:
|
484 |
msgid "Extras"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: ../admin/class-is-editor.php:
|
488 |
#, php-format
|
489 |
msgid "Search post title %s( File title )%s"
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: ../admin/class-is-editor.php:
|
493 |
#, php-format
|
494 |
msgid "Search post content %s( File description )%s"
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: ../admin/class-is-editor.php:
|
498 |
#, php-format
|
499 |
msgid "Search post excerpt %s( File caption )%s"
|
500 |
msgstr ""
|
501 |
|
502 |
-
#: ../admin/class-is-editor.php:
|
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:
|
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:
|
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:
|
520 |
msgid "AND - Search posts having all the above selected category terms"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: ../admin/class-is-editor.php:
|
524 |
msgid "OR - Search posts having any one of the above selected category terms"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: ../admin/class-is-editor.php:
|
528 |
msgid "Use below options to customize this search form."
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: ../admin/class-is-editor.php:
|
532 |
msgid "Enable Search Form Customization"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: ../admin/class-is-editor.php:
|
536 |
#: ../includes/class-is-search-form.php:526
|
537 |
msgid "Customizer"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: ../admin/class-is-editor.php:
|
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:
|
547 |
msgid "Search Form Customizer"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: ../admin/class-is-editor.php:
|
551 |
msgid "Nothing found"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: ../admin/class-is-editor.php:
|
555 |
msgid "View All"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: ../admin/class-is-editor.php:
|
559 |
msgid "More Results.."
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: ../admin/class-is-editor.php:
|
563 |
msgid ""
|
564 |
"Configure below options to manage AJAX functionality of this search form."
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: ../admin/class-is-editor.php:
|
568 |
-
#: ../admin/class-is-editor.php:
|
569 |
msgid "Enable AJAX Search"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: ../admin/class-is-editor.php:
|
573 |
msgid "Search Results"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: ../admin/class-is-editor.php:
|
577 |
msgid "Display selected content in the search results."
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: ../admin/class-is-editor.php:
|
581 |
msgid "Description"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: ../admin/class-is-editor.php:
|
585 |
msgid "Excerpt"
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: ../admin/class-is-editor.php:
|
589 |
msgid "Content"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: ../admin/class-is-editor.php:
|
593 |
msgid "Description Length."
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: ../admin/class-is-editor.php:
|
597 |
msgid "Image"
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: ../admin/class-is-editor.php:
|
601 |
msgid "Categories"
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: ../admin/class-is-editor.php:
|
605 |
msgid "Tags"
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: ../admin/class-is-editor.php:
|
609 |
msgid "Author"
|
610 |
msgstr ""
|
611 |
|
612 |
-
#: ../admin/class-is-editor.php:
|
613 |
msgid "Minimum number of characters required to run ajax search."
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: ../admin/class-is-editor.php:
|
617 |
msgid "Search results box max height."
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: ../admin/class-is-editor.php:
|
621 |
msgid "Configure the plugin text displayed in the search results."
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: ../admin/class-is-editor.php:
|
625 |
msgid "Text when there is no search results. HTML tags is allowed."
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: ../admin/class-is-editor.php:
|
629 |
msgid "Show 'More Results..' text in the bottom of the search results box"
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: ../admin/class-is-editor.php:
|
633 |
msgid "Text for the \"More Results..\"."
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: ../admin/class-is-editor.php:
|
637 |
msgid "Redirect to search results page clicking on the 'More Results..' text"
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: ../admin/class-is-editor.php:
|
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:
|
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:
|
652 |
msgid "Configure how the search button should work clicking on it."
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: ../admin/class-is-editor.php:
|
656 |
msgid "Search button displays search results page"
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: ../admin/class-is-editor.php:
|
660 |
msgid "Search button displays ajax search results"
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: ../admin/class-is-editor.php:
|
664 |
msgid "WooCommerce"
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: ../admin/class-is-editor.php:
|
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:
|
675 |
msgid "Display selected WooCommerce content in the search results."
|
676 |
msgstr ""
|
677 |
|
678 |
-
#: ../admin/class-is-editor.php:
|
679 |
msgid "Price"
|
680 |
msgstr ""
|
681 |
|
682 |
-
#: ../admin/class-is-editor.php:
|
683 |
msgid "Hide Price for Out of Stock Products"
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: ../admin/class-is-editor.php:
|
687 |
msgid "Sale Badge"
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: ../admin/class-is-editor.php:
|
691 |
msgid "SKU"
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: ../admin/class-is-editor.php:
|
695 |
msgid "Stock Status"
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: ../admin/class-is-editor.php:
|
699 |
msgid "Featured Icon"
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: ../admin/class-is-editor.php:
|
703 |
msgid "Matching Categories"
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: ../admin/class-is-editor.php:
|
707 |
msgid "Matching Tags"
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: ../admin/class-is-editor.php:
|
711 |
msgid "Details Box"
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: ../admin/class-is-editor.php:
|
715 |
msgid "Below options only apply to matching categories or tags."
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: ../admin/class-is-editor.php:
|
719 |
msgid "Product List"
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: ../admin/class-is-editor.php:
|
723 |
msgid "All Product"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: ../admin/class-is-editor.php:
|
727 |
msgid "Featured Products"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: ../admin/class-is-editor.php:
|
731 |
msgid "On-sale Products</option>"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: ../admin/class-is-editor.php:
|
735 |
msgid "Order by"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: ../admin/class-is-editor.php:
|
739 |
msgid "Random"
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: ../admin/class-is-editor.php:
|
743 |
msgid "Sales"
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: ../admin/class-is-editor.php:
|
747 |
msgid "Order"
|
748 |
msgstr ""
|
749 |
|
750 |
-
#: ../admin/class-is-editor.php:
|
751 |
msgid "ASC"
|
752 |
msgstr ""
|
753 |
|
754 |
-
#: ../admin/class-is-editor.php:
|
755 |
msgid "DESC"
|
756 |
msgstr ""
|
757 |
|
758 |
-
#: ../admin/class-is-editor.php:
|
759 |
msgid ""
|
760 |
"Use below customizer to customize AJAX search results color and loader image."
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: ../admin/class-is-editor.php:
|
764 |
msgid "AJAX Search Customizer"
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: ../admin/class-is-editor.php:
|
768 |
msgid "This search form excludes the below configured content from search."
|
769 |
msgstr ""
|
770 |
|
771 |
-
#: ../admin/class-is-editor.php:
|
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:
|
779 |
#, php-format
|
780 |
msgid "Do not exclude any %s from search"
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: ../admin/class-is-editor.php:
|
784 |
#, php-format
|
785 |
msgid "Exclude selected %s from search"
|
786 |
msgstr ""
|
787 |
|
788 |
-
#: ../admin/class-is-editor.php:
|
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:
|
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:
|
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:
|
810 |
#, php-format
|
811 |
msgid "Exclude %s from search having selected custom fields"
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: ../admin/class-is-editor.php:
|
815 |
msgid "Exclude 'Out of Stock' products from search"
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: ../admin/class-is-editor.php:
|
819 |
msgid "Excluded File Types :"
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: ../admin/class-is-editor.php:
|
823 |
msgid "Exclude selected MIME types from search"
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: ../admin/class-is-editor.php:
|
827 |
msgid "Exclude Images"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: ../admin/class-is-editor.php:
|
831 |
msgid "Exclude Videos"
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: ../admin/class-is-editor.php:
|
835 |
msgid "Exclude Audios"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: ../admin/class-is-editor.php:
|
839 |
msgid "Exclude Text Files"
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: ../admin/class-is-editor.php:
|
843 |
msgid "Exclude PDF Files"
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: ../admin/class-is-editor.php:
|
847 |
msgid "Exclude Document Files"
|
848 |
msgstr ""
|
849 |
|
850 |
-
#: ../admin/class-is-editor.php:
|
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:
|
858 |
msgid "Exclude posts from search created by selected authors."
|
859 |
msgstr ""
|
860 |
|
861 |
-
#: ../admin/class-is-editor.php:
|
862 |
msgid "Search all author posts"
|
863 |
msgstr ""
|
864 |
|
865 |
-
#: ../admin/class-is-editor.php:
|
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:
|
873 |
msgid "Exclude posts from search having selected post statuses."
|
874 |
msgstr ""
|
875 |
|
876 |
-
#: ../admin/class-is-editor.php:
|
877 |
msgid "Exclude sticky posts from search"
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: ../admin/class-is-editor.php:
|
881 |
msgid "Configure below options to manage functionality of this search form."
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: ../admin/class-is-editor.php:
|
885 |
msgid "Posts Per Page"
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: ../admin/class-is-editor.php:
|
889 |
msgid "Display selected number of posts on search results page."
|
890 |
msgstr ""
|
891 |
|
892 |
-
#: ../admin/class-is-editor.php:
|
893 |
msgid "Order Search Results"
|
894 |
msgstr ""
|
895 |
|
896 |
-
#: ../admin/class-is-editor.php:
|
897 |
msgid "Display posts on search results page ordered by selected options."
|
898 |
msgstr ""
|
899 |
|
900 |
-
#: ../admin/class-is-editor.php:
|
901 |
msgid "Highlight Search Terms"
|
902 |
msgstr ""
|
903 |
|
904 |
-
#: ../admin/class-is-editor.php:
|
905 |
msgid "Highlight searched terms on search results page"
|
906 |
msgstr ""
|
907 |
|
908 |
-
#: ../admin/class-is-editor.php:
|
909 |
msgid "Select text highlight color"
|
910 |
msgstr ""
|
911 |
|
912 |
-
#: ../admin/class-is-editor.php:
|
913 |
msgid "Search All Or Any Search Terms"
|
914 |
msgstr ""
|
915 |
|
916 |
-
#: ../admin/class-is-editor.php:
|
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:
|
922 |
msgid "OR - Display content having any of the search terms"
|
923 |
msgstr ""
|
924 |
|
925 |
-
#: ../admin/class-is-editor.php:
|
926 |
msgid "AND - Display content having all the search terms"
|
927 |
msgstr ""
|
928 |
|
929 |
-
#: ../admin/class-is-editor.php:
|
930 |
msgid "Fuzzy Matching"
|
931 |
msgstr ""
|
932 |
|
933 |
-
#: ../admin/class-is-editor.php:
|
934 |
msgid ""
|
935 |
"Select whether to search posts having whole or partial word being searched."
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: ../admin/class-is-editor.php:
|
939 |
msgid "Whole - Search posts that include the whole search term"
|
940 |
msgstr ""
|
941 |
|
942 |
-
#: ../admin/class-is-editor.php:
|
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:
|
949 |
msgid "Keyword Stemming"
|
950 |
msgstr ""
|
951 |
|
952 |
-
#: ../admin/class-is-editor.php:
|
953 |
msgid "Select whether to search the base word of a searched keyword."
|
954 |
msgstr ""
|
955 |
|
956 |
-
#: ../admin/class-is-editor.php:
|
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:
|
963 |
msgid "Not recommended to use when Fuzzy Matching option is set to Whole."
|
964 |
msgstr ""
|
965 |
|
966 |
-
#: ../admin/class-is-editor.php:
|
967 |
msgid "Also search base word of searched keyword"
|
968 |
msgstr ""
|
969 |
|
970 |
-
#: ../admin/class-is-editor.php:
|
971 |
msgid "Display sticky posts to the start of the search results page"
|
972 |
msgstr ""
|
973 |
|
974 |
-
#: ../admin/class-is-editor.php:
|
975 |
msgid "Display search form only for site administrator"
|
976 |
msgstr ""
|
977 |
|
978 |
-
#: ../admin/class-is-editor.php:
|
979 |
msgid "Disable this search form"
|
980 |
msgstr ""
|
981 |
|
982 |
-
#: ../admin/class-is-editor.php:
|
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:
|
989 |
msgid "Display an error for empty search query"
|
990 |
msgstr ""
|
991 |
|
@@ -1023,8 +1023,8 @@ msgid ""
|
|
1023 |
msgstr ""
|
1024 |
|
1025 |
#: ../admin/class-is-help.php:79 ../admin/class-is-list-table.php:158
|
1026 |
-
#: ../admin/class-is-settings-fields.php:
|
1027 |
-
#: ../admin/class-is-settings-fields.php:
|
1028 |
#: ../includes/class-is-search-form.php:522 ../includes/class-is-widget.php:71
|
1029 |
msgid "Edit"
|
1030 |
msgstr ""
|
@@ -1138,7 +1138,7 @@ msgstr ""
|
|
1138 |
msgid "For more information:"
|
1139 |
msgstr ""
|
1140 |
|
1141 |
-
#: ../admin/class-is-help.php:112 ../admin/partials/settings-form.php:
|
1142 |
msgid "Give us a rating"
|
1143 |
msgstr ""
|
1144 |
|
@@ -1175,242 +1175,314 @@ msgstr ""
|
|
1175 |
msgid "d/m/Y"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: ../admin/class-is-settings-fields.php:
|
1179 |
msgid "Header Search"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
-
#: ../admin/class-is-settings-fields.php:
|
1183 |
msgid "Footer Search"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
-
#: ../admin/class-is-settings-fields.php:
|
1187 |
msgid "Mobile Search"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: ../admin/class-is-settings-fields.php:
|
1191 |
msgid "Custom CSS"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
-
#: ../admin/class-is-settings-fields.php:
|
1195 |
msgid "Stopwords"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
-
#: ../admin/class-is-settings-fields.php:
|
1199 |
msgid "Synonyms"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
-
#: ../admin/class-is-settings-fields.php:
|
1203 |
msgid "Plugin Files"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
-
#: ../admin/class-is-settings-fields.php:
|
1207 |
msgid "Menu Search Form Settings"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
#: ../admin/class-is-settings-fields.php:
|
|
|
|
|
|
|
|
|
1211 |
msgid "Display search in menu and configure it using below options."
|
1212 |
msgstr ""
|
1213 |
|
1214 |
-
#: ../admin/class-is-settings-fields.php:
|
|
|
|
|
|
|
|
|
1215 |
msgid "Make search changes on entire website using below options."
|
1216 |
msgstr ""
|
1217 |
|
1218 |
-
#: ../admin/class-is-settings-fields.php:
|
1219 |
msgid "Display search form on selected menu locations."
|
1220 |
msgstr ""
|
1221 |
|
1222 |
-
#: ../admin/class-is-settings-fields.php:
|
1223 |
#, php-format
|
1224 |
msgid "No menu assigned to navigation menu location in the %sMenus screen%s."
|
1225 |
msgstr ""
|
1226 |
|
1227 |
-
#: ../admin/class-is-settings-fields.php:
|
1228 |
msgid "Navigation menu location is not registered on the site."
|
1229 |
msgstr ""
|
1230 |
|
1231 |
-
#: ../admin/class-is-settings-fields.php:
|
1232 |
msgid "Display search form on selected menus."
|
1233 |
msgstr ""
|
1234 |
|
1235 |
-
#: ../admin/class-is-settings-fields.php:
|
1236 |
#, php-format
|
1237 |
msgid "No menu created in the %sMenus screen%s."
|
1238 |
msgstr ""
|
1239 |
|
1240 |
-
#: ../admin/class-is-settings-fields.php:
|
1241 |
msgid "Display search form at the start of the navigation menu"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
-
#: ../admin/class-is-settings-fields.php:
|
1245 |
msgid "Select menu search form style."
|
1246 |
msgstr ""
|
1247 |
|
1248 |
-
#: ../admin/class-is-settings-fields.php:
|
1249 |
msgid "Default"
|
1250 |
msgstr ""
|
1251 |
|
1252 |
-
#: ../admin/class-is-settings-fields.php:
|
1253 |
msgid "Dropdown"
|
1254 |
msgstr ""
|
1255 |
|
1256 |
-
#: ../admin/class-is-settings-fields.php:
|
1257 |
msgid "Sliding"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
-
#: ../admin/class-is-settings-fields.php:
|
1261 |
msgid "Full Width"
|
1262 |
msgstr ""
|
1263 |
|
1264 |
-
#: ../admin/class-is-settings-fields.php:
|
1265 |
msgid "Popup"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
-
#: ../admin/class-is-settings-fields.php:
|
1269 |
msgid "Select menu magnifier icon color."
|
1270 |
msgstr ""
|
1271 |
|
1272 |
-
#: ../admin/class-is-settings-fields.php:
|
1273 |
msgid "Display search form close icon"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
-
#: ../admin/class-is-settings-fields.php:
|
1277 |
msgid "Add menu title to display in place of search icon."
|
1278 |
msgstr ""
|
1279 |
|
1280 |
-
#: ../admin/class-is-settings-fields.php:
|
1281 |
msgid "Add class to search form menu item."
|
1282 |
msgstr ""
|
1283 |
|
1284 |
-
#: ../admin/class-is-settings-fields.php:
|
1285 |
msgid "Add multiple classes seperated by space."
|
1286 |
msgstr ""
|
1287 |
|
1288 |
-
#: ../admin/class-is-settings-fields.php:
|
1289 |
msgid "Select search form that will control menu search functionality."
|
1290 |
msgstr ""
|
1291 |
|
1292 |
-
#: ../admin/class-is-settings-fields.php:
|
1293 |
-
#: ../admin/class-is-settings-fields.php:
|
1294 |
-
#: ../admin/class-is-settings-fields.php:
|
1295 |
msgid "Create New"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
-
#: ../admin/class-is-settings-fields.php:
|
1299 |
msgid ""
|
1300 |
"Add Google Custom Search( CSE ) search form code that will replace default "
|
1301 |
"search form."
|
1302 |
msgstr ""
|
1303 |
|
1304 |
-
#: ../admin/class-is-settings-fields.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1305 |
msgid "Select search form to display in site header( Not Menu )."
|
1306 |
msgstr ""
|
1307 |
|
1308 |
-
#: ../admin/class-is-settings-fields.php:
|
1309 |
-
#: ../admin/class-is-settings-fields.php:
|
1310 |
msgid "None"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
-
#: ../admin/class-is-settings-fields.php:
|
1314 |
msgid ""
|
1315 |
"Please note that the above option displays search form in site header and "
|
1316 |
"not in navigation menu."
|
1317 |
msgstr ""
|
1318 |
|
1319 |
-
#: ../admin/class-is-settings-fields.php:
|
1320 |
msgid "Select search form to display in site footer."
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#: ../admin/class-is-settings-fields.php:
|
1324 |
msgid "Display search form in site header on mobile devices"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
-
#: ../admin/class-is-settings-fields.php:
|
1328 |
msgid ""
|
1329 |
"If this site uses cache then please select the below option to display "
|
1330 |
"search form on mobile."
|
1331 |
msgstr ""
|
1332 |
|
1333 |
-
#: ../admin/class-is-settings-fields.php:
|
1334 |
msgid "This site uses cache"
|
1335 |
msgstr ""
|
1336 |
|
1337 |
-
#: ../admin/class-is-settings-fields.php:
|
1338 |
msgid "Add custom css code."
|
1339 |
msgstr ""
|
1340 |
|
1341 |
-
#: ../admin/class-is-settings-fields.php:
|
1342 |
msgid "Enter stopwords here that will not be searched."
|
1343 |
msgstr ""
|
1344 |
|
1345 |
-
#: ../admin/class-is-settings-fields.php:
|
1346 |
msgid "Please separate multiple words with commas."
|
1347 |
msgstr ""
|
1348 |
|
1349 |
-
#: ../admin/class-is-settings-fields.php:
|
1350 |
msgid "Add synonyms here to make the searches find better results."
|
1351 |
msgstr ""
|
1352 |
|
1353 |
-
#: ../admin/class-is-settings-fields.php:
|
1354 |
msgid ""
|
1355 |
"If you add bird = crow to the list of synonyms, searches for bird "
|
1356 |
"automatically become a search for bird crow and will thus match to posts "
|
1357 |
"that include either bird or crow."
|
1358 |
msgstr ""
|
1359 |
|
1360 |
-
#: ../admin/class-is-settings-fields.php:
|
1361 |
msgid ""
|
1362 |
"This only works for search forms configured to search any of the search "
|
1363 |
"terms(OR) and not all search terms(AND) in the search form Options."
|
1364 |
msgstr ""
|
1365 |
|
1366 |
-
#: ../admin/class-is-settings-fields.php:
|
1367 |
msgid "The format here is key = value"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
-
#: ../admin/class-is-settings-fields.php:
|
1371 |
msgid "Please add every synonyms key = value pairs on new line."
|
1372 |
msgstr ""
|
1373 |
|
1374 |
-
#: ../admin/class-is-settings-fields.php:
|
1375 |
msgid ""
|
1376 |
"Enable below options to disable loading of plugin CSS and JavaScript files."
|
1377 |
msgstr ""
|
1378 |
|
1379 |
-
#: ../admin/class-is-settings-fields.php:
|
1380 |
msgid "Do not load plugin CSS files"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
-
#: ../admin/class-is-settings-fields.php:
|
1384 |
msgid "Do not load plugin JavaScript files"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
-
#: ../admin/class-is-settings-fields.php:
|
1388 |
msgid ""
|
1389 |
"If checked, you have to add following plugin file code into your child theme "
|
1390 |
"CSS file."
|
1391 |
msgstr ""
|
1392 |
|
1393 |
-
#: ../admin/class-is-settings-fields.php:
|
1394 |
msgid ""
|
1395 |
"If checked, you have to add following plugin files code into your child "
|
1396 |
"theme JavaScript file."
|
1397 |
msgstr ""
|
1398 |
|
1399 |
-
#: ../admin/class-is-settings-fields.php:
|
1400 |
msgid "Warning: Use with caution."
|
1401 |
msgstr ""
|
1402 |
|
1403 |
-
#: ../admin/class-is-settings-fields.php:
|
1404 |
msgid ""
|
1405 |
"Do not use Default Search Form to control WordPress default search "
|
1406 |
"functionality"
|
1407 |
msgstr ""
|
1408 |
|
1409 |
-
#: ../admin/class-is-settings-fields.php:
|
1410 |
msgid "Disable search functionality on entire website"
|
1411 |
msgstr ""
|
1412 |
|
1413 |
-
#: ../admin/class-is-settings-fields.php:
|
1414 |
msgid ""
|
1415 |
"Display easy edit links of search form on the website frontend to the admin "
|
1416 |
"users"
|
@@ -1472,16 +1544,18 @@ msgid ""
|
|
1472 |
" 'Cancel' to stop, 'OK' to reset."
|
1473 |
msgstr ""
|
1474 |
|
1475 |
-
#: ../admin/partials/search-form.php:196
|
|
|
1476 |
msgid "Information"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
-
#: ../admin/partials/search-form.php:199
|
|
|
1480 |
msgid "Documentation"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
#: ../admin/partials/search-form.php:201
|
1484 |
-
#: ../admin/partials/settings-form.php:
|
1485 |
msgid "Contact Us"
|
1486 |
msgstr ""
|
1487 |
|
@@ -1500,8 +1574,8 @@ msgstr ""
|
|
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:
|
1504 |
-
#: ../public/class-is-public.php:
|
1505 |
msgid "Search"
|
1506 |
msgstr ""
|
1507 |
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Ivory Search\n"
|
5 |
+
"POT-Creation-Date: 2020-07-04 17:27+0530\n"
|
6 |
"PO-Revision-Date: 2020-03-17 21:05+0530\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Ivory Search <admin@ivorysearch.com>\n"
|
21 |
msgid "The changes you made will be lost if you navigate away from this page."
|
22 |
msgstr ""
|
23 |
|
24 |
+
#: ../admin/class-is-admin.php:140 ../admin/class-is-settings-fields.php:357
|
25 |
#: ../admin/partials/search-form.php:23
|
26 |
msgid "Edit Search Form"
|
27 |
msgstr ""
|
45 |
|
46 |
#: ../admin/class-is-admin.php:185 ../admin/class-is-help.php:111
|
47 |
#: ../admin/partials/search-form.php:200
|
48 |
+
#: ../admin/partials/settings-form.php:107
|
49 |
msgid "Support"
|
50 |
msgstr ""
|
51 |
|
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 |
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:1423 ../admin/class-is-editor.php:1454
|
245 |
+
#: ../admin/class-is-editor.php:1570 ../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:1423 ../admin/class-is-editor.php:1454
|
253 |
+
#: ../admin/class-is-editor.php:1570 ../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: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:211 ../admin/class-is-editor.php:260
|
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:1237
|
284 |
+
#: ../admin/class-is-editor.php:1261 ../admin/class-is-editor.php:1308
|
285 |
msgid "Search.."
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: ../admin/class-is-editor.php:215 ../admin/class-is-editor.php:1187
|
289 |
msgid "Load All"
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: ../admin/class-is-editor.php:220 ../admin/class-is-editor.php:1193
|
293 |
#, php-format
|
294 |
msgid "No %s created."
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: ../admin/class-is-editor.php:222 ../admin/class-is-editor.php:270
|
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:1246
|
300 |
+
#: ../admin/class-is-editor.php:1272 ../admin/class-is-editor.php:1316
|
301 |
msgid ""
|
302 |
"Hold down the control (ctrl) or command button to select multiple options."
|
303 |
msgstr ""
|
309 |
"specific posts of another post type."
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: ../admin/class-is-editor.php:234
|
313 |
#, php-format
|
314 |
msgid "Search all %s"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: ../admin/class-is-editor.php:236
|
318 |
#, php-format
|
319 |
msgid "Search only selected %s"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: ../admin/class-is-editor.php:274
|
323 |
#, php-format
|
324 |
msgid "Search %s of all taxonomies (%s categories, tags & terms %s)"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: ../admin/class-is-editor.php:276
|
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:299
|
333 |
#, php-format
|
334 |
msgid "Search selected %s custom fields values"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: ../admin/class-is-editor.php:311
|
338 |
msgid "Search product SKU"
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: ../admin/class-is-editor.php:314
|
342 |
msgid "Search product variation"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: ../admin/class-is-editor.php:346
|
346 |
msgid "Selected File Types :"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: ../admin/class-is-editor.php:354 ../admin/class-is-editor.php:1326
|
350 |
msgid "Search all MIME types"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: ../admin/class-is-editor.php:356
|
354 |
msgid "Search only selected MIME types"
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: ../admin/class-is-editor.php:361
|
358 |
msgid "Search Images"
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: ../admin/class-is-editor.php:363
|
362 |
msgid "Search Videos"
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: ../admin/class-is-editor.php:365
|
366 |
msgid "Search Audios"
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: ../admin/class-is-editor.php:367
|
370 |
msgid "Search Text Files"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: ../admin/class-is-editor.php:369
|
374 |
msgid "Search PDF Files"
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: ../admin/class-is-editor.php:371
|
378 |
msgid "Search Document Files"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: ../admin/class-is-editor.php:378
|
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:381 ../admin/class-is-editor.php:1352
|
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:390 ../admin/class-is-editor.php:838
|
395 |
+
#: ../admin/class-is-editor.php:1057 ../admin/class-is-list-table.php:34
|
396 |
msgid "Date"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: ../admin/class-is-editor.php:394
|
400 |
msgid "Search posts created only in the specified date range."
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: ../admin/class-is-editor.php:400
|
404 |
msgid "From"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: ../admin/class-is-editor.php:400
|
408 |
msgid "To"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: ../admin/class-is-editor.php:410 ../admin/class-is-editor.php:1362
|
412 |
msgid "Authors"
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: ../admin/class-is-editor.php:414
|
416 |
msgid "Search posts created by selected authors."
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: ../admin/class-is-editor.php:433 ../admin/class-is-editor.php:435
|
420 |
msgid "Searches all author posts"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: ../admin/class-is-editor.php:463
|
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:471
|
431 |
msgid "Search author Display Name and display the posts created by that author"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: ../admin/class-is-editor.php:476
|
435 |
msgid "Comments"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: ../admin/class-is-editor.php:480
|
439 |
msgid "Search posts by configured comments."
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: ../admin/class-is-editor.php:487
|
443 |
msgid "Search posts having number of comments"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: ../admin/class-is-editor.php:497
|
447 |
msgid "NA"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: ../admin/class-is-editor.php:508
|
451 |
msgid "Search approved comment content"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: ../admin/class-is-editor.php:513 ../admin/class-is-editor.php:1422
|
455 |
msgid "Post Status"
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: ../admin/class-is-editor.php:517
|
459 |
msgid "Search posts having selected post statuses."
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: ../admin/class-is-editor.php:534
|
463 |
msgid "Select Post Status"
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: ../admin/class-is-editor.php:554
|
467 |
msgid "Password Protected"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: ../admin/class-is-editor.php:560
|
471 |
msgid "Search posts with or without passwords"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: ../admin/class-is-editor.php:562
|
475 |
msgid "Search posts with passwords"
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: ../admin/class-is-editor.php:564
|
479 |
msgid "Search posts without passwords"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: ../admin/class-is-editor.php:569 ../admin/class-is-editor.php:1569
|
483 |
+
#: ../admin/class-is-settings-fields.php:144
|
484 |
msgid "Extras"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: ../admin/class-is-editor.php:576
|
488 |
#, php-format
|
489 |
msgid "Search post title %s( File title )%s"
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: ../admin/class-is-editor.php:579
|
493 |
#, php-format
|
494 |
msgid "Search post content %s( File description )%s"
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: ../admin/class-is-editor.php:582
|
498 |
#, php-format
|
499 |
msgid "Search post excerpt %s( File caption )%s"
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: ../admin/class-is-editor.php:585
|
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:588
|
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:609
|
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:614
|
520 |
msgid "AND - Search posts having all the above selected category terms"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: ../admin/class-is-editor.php:616
|
524 |
msgid "OR - Search posts having any one of the above selected category terms"
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: ../admin/class-is-editor.php:637
|
528 |
msgid "Use below options to customize this search form."
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: ../admin/class-is-editor.php:644 ../admin/class-is-editor.php:659
|
532 |
msgid "Enable Search Form Customization"
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: ../admin/class-is-editor.php:652 ../admin/class-is-editor.php:1080
|
536 |
#: ../includes/class-is-search-form.php:526
|
537 |
msgid "Customizer"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: ../admin/class-is-editor.php:660
|
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:668
|
547 |
msgid "Search Form Customizer"
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: ../admin/class-is-editor.php:717 ../public/class-is-ajax.php:67
|
551 |
msgid "Nothing found"
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: ../admin/class-is-editor.php:720
|
555 |
msgid "View All"
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: ../admin/class-is-editor.php:724
|
559 |
msgid "More Results.."
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: ../admin/class-is-editor.php:735
|
563 |
msgid ""
|
564 |
"Configure below options to manage AJAX functionality of this search form."
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: ../admin/class-is-editor.php:742 ../admin/class-is-editor.php:756
|
568 |
+
#: ../admin/class-is-editor.php:938 ../admin/class-is-editor.php:1087
|
569 |
msgid "Enable AJAX Search"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: ../admin/class-is-editor.php:749
|
573 |
msgid "Search Results"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: ../admin/class-is-editor.php:757
|
577 |
msgid "Display selected content in the search results."
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: ../admin/class-is-editor.php:764
|
581 |
msgid "Description"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: ../admin/class-is-editor.php:772
|
585 |
msgid "Excerpt"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: ../admin/class-is-editor.php:778
|
589 |
msgid "Content"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: ../admin/class-is-editor.php:786
|
593 |
msgid "Description Length."
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: ../admin/class-is-editor.php:794
|
597 |
msgid "Image"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: ../admin/class-is-editor.php:805
|
601 |
msgid "Categories"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: ../admin/class-is-editor.php:816
|
605 |
msgid "Tags"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: ../admin/class-is-editor.php:827 ../admin/class-is-list-table.php:33
|
609 |
msgid "Author"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: ../admin/class-is-editor.php:845
|
613 |
msgid "Minimum number of characters required to run ajax search."
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: ../admin/class-is-editor.php:850
|
617 |
msgid "Search results box max height."
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: ../admin/class-is-editor.php:853
|
621 |
msgid "Configure the plugin text displayed in the search results."
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: ../admin/class-is-editor.php:858
|
625 |
msgid "Text when there is no search results. HTML tags is allowed."
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: ../admin/class-is-editor.php:867
|
629 |
msgid "Show 'More Results..' text in the bottom of the search results box"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: ../admin/class-is-editor.php:875
|
633 |
msgid "Text for the \"More Results..\"."
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: ../admin/class-is-editor.php:884
|
637 |
msgid "Redirect to search results page clicking on the 'More Results..' text"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: ../admin/class-is-editor.php:894
|
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:903
|
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:908
|
652 |
msgid "Configure how the search button should work clicking on it."
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: ../admin/class-is-editor.php:914
|
656 |
msgid "Search button displays search results page"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: ../admin/class-is-editor.php:921
|
660 |
msgid "Search button displays ajax search results"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: ../admin/class-is-editor.php:929 ../admin/class-is-help.php:137
|
664 |
msgid "WooCommerce"
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: ../admin/class-is-editor.php:936
|
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:939
|
675 |
msgid "Display selected WooCommerce content in the search results."
|
676 |
msgstr ""
|
677 |
|
678 |
+
#: ../admin/class-is-editor.php:946 ../admin/class-is-editor.php:1058
|
679 |
msgid "Price"
|
680 |
msgstr ""
|
681 |
|
682 |
+
#: ../admin/class-is-editor.php:957
|
683 |
msgid "Hide Price for Out of Stock Products"
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: ../admin/class-is-editor.php:968
|
687 |
msgid "Sale Badge"
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: ../admin/class-is-editor.php:979
|
691 |
msgid "SKU"
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: ../admin/class-is-editor.php:990
|
695 |
msgid "Stock Status"
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: ../admin/class-is-editor.php:1001 ../public/class-is-ajax.php:623
|
699 |
msgid "Featured Icon"
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: ../admin/class-is-editor.php:1012
|
703 |
msgid "Matching Categories"
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: ../admin/class-is-editor.php:1023
|
707 |
msgid "Matching Tags"
|
708 |
msgstr ""
|
709 |
|
710 |
+
#: ../admin/class-is-editor.php:1034
|
711 |
msgid "Details Box"
|
712 |
msgstr ""
|
713 |
|
714 |
+
#: ../admin/class-is-editor.php:1040
|
715 |
msgid "Below options only apply to matching categories or tags."
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: ../admin/class-is-editor.php:1042
|
719 |
msgid "Product List"
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: ../admin/class-is-editor.php:1045
|
723 |
msgid "All Product"
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: ../admin/class-is-editor.php:1046
|
727 |
msgid "Featured Products"
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: ../admin/class-is-editor.php:1047
|
731 |
msgid "On-sale Products</option>"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: ../admin/class-is-editor.php:1054
|
735 |
msgid "Order by"
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: ../admin/class-is-editor.php:1059
|
739 |
msgid "Random"
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: ../admin/class-is-editor.php:1060
|
743 |
msgid "Sales"
|
744 |
msgstr ""
|
745 |
|
746 |
+
#: ../admin/class-is-editor.php:1067
|
747 |
msgid "Order"
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: ../admin/class-is-editor.php:1070
|
751 |
msgid "ASC"
|
752 |
msgstr ""
|
753 |
|
754 |
+
#: ../admin/class-is-editor.php:1071
|
755 |
msgid "DESC"
|
756 |
msgstr ""
|
757 |
|
758 |
+
#: ../admin/class-is-editor.php:1088
|
759 |
msgid ""
|
760 |
"Use below customizer to customize AJAX search results color and loader image."
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: ../admin/class-is-editor.php:1096
|
764 |
msgid "AJAX Search Customizer"
|
765 |
msgstr ""
|
766 |
|
767 |
+
#: ../admin/class-is-editor.php:1115
|
768 |
msgid "This search form excludes the below configured content from search."
|
769 |
msgstr ""
|
770 |
|
771 |
+
#: ../admin/class-is-editor.php:1204
|
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:1209
|
779 |
#, php-format
|
780 |
msgid "Do not exclude any %s from search"
|
781 |
msgstr ""
|
782 |
|
783 |
+
#: ../admin/class-is-editor.php:1211
|
784 |
#, php-format
|
785 |
msgid "Exclude selected %s from search"
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: ../admin/class-is-editor.php:1214
|
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:1250
|
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:1252
|
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:1276
|
810 |
#, php-format
|
811 |
msgid "Exclude %s from search having selected custom fields"
|
812 |
msgstr ""
|
813 |
|
814 |
+
#: ../admin/class-is-editor.php:1288
|
815 |
msgid "Exclude 'Out of Stock' products from search"
|
816 |
msgstr ""
|
817 |
|
818 |
+
#: ../admin/class-is-editor.php:1318
|
819 |
msgid "Excluded File Types :"
|
820 |
msgstr ""
|
821 |
|
822 |
+
#: ../admin/class-is-editor.php:1328
|
823 |
msgid "Exclude selected MIME types from search"
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: ../admin/class-is-editor.php:1332
|
827 |
msgid "Exclude Images"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: ../admin/class-is-editor.php:1334
|
831 |
msgid "Exclude Videos"
|
832 |
msgstr ""
|
833 |
|
834 |
+
#: ../admin/class-is-editor.php:1336
|
835 |
msgid "Exclude Audios"
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: ../admin/class-is-editor.php:1338
|
839 |
msgid "Exclude Text Files"
|
840 |
msgstr ""
|
841 |
|
842 |
+
#: ../admin/class-is-editor.php:1340
|
843 |
msgid "Exclude PDF Files"
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: ../admin/class-is-editor.php:1342
|
847 |
msgid "Exclude Document Files"
|
848 |
msgstr ""
|
849 |
|
850 |
+
#: ../admin/class-is-editor.php:1349
|
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:1366
|
858 |
msgid "Exclude posts from search created by selected authors."
|
859 |
msgstr ""
|
860 |
|
861 |
+
#: ../admin/class-is-editor.php:1385 ../admin/class-is-editor.php:1387
|
862 |
msgid "Search all author posts"
|
863 |
msgstr ""
|
864 |
|
865 |
+
#: ../admin/class-is-editor.php:1415
|
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:1427
|
873 |
msgid "Exclude posts from search having selected post statuses."
|
874 |
msgstr ""
|
875 |
|
876 |
+
#: ../admin/class-is-editor.php:1432
|
877 |
msgid "Exclude sticky posts from search"
|
878 |
msgstr ""
|
879 |
|
880 |
+
#: ../admin/class-is-editor.php:1446
|
881 |
msgid "Configure below options to manage functionality of this search form."
|
882 |
msgstr ""
|
883 |
|
884 |
+
#: ../admin/class-is-editor.php:1453
|
885 |
msgid "Posts Per Page"
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: ../admin/class-is-editor.php:1457
|
889 |
msgid "Display selected number of posts on search results page."
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: ../admin/class-is-editor.php:1474
|
893 |
msgid "Order Search Results"
|
894 |
msgstr ""
|
895 |
|
896 |
+
#: ../admin/class-is-editor.php:1477
|
897 |
msgid "Display posts on search results page ordered by selected options."
|
898 |
msgstr ""
|
899 |
|
900 |
+
#: ../admin/class-is-editor.php:1502
|
901 |
msgid "Highlight Search Terms"
|
902 |
msgstr ""
|
903 |
|
904 |
+
#: ../admin/class-is-editor.php:1508
|
905 |
msgid "Highlight searched terms on search results page"
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: ../admin/class-is-editor.php:1511
|
909 |
msgid "Select text highlight color"
|
910 |
msgstr ""
|
911 |
|
912 |
+
#: ../admin/class-is-editor.php:1517
|
913 |
msgid "Search All Or Any Search Terms"
|
914 |
msgstr ""
|
915 |
|
916 |
+
#: ../admin/class-is-editor.php:1521
|
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:1526
|
922 |
msgid "OR - Display content having any of the search terms"
|
923 |
msgstr ""
|
924 |
|
925 |
+
#: ../admin/class-is-editor.php:1528
|
926 |
msgid "AND - Display content having all the search terms"
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: ../admin/class-is-editor.php:1534
|
930 |
msgid "Fuzzy Matching"
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: ../admin/class-is-editor.php:1537
|
934 |
msgid ""
|
935 |
"Select whether to search posts having whole or partial word being searched."
|
936 |
msgstr ""
|
937 |
|
938 |
+
#: ../admin/class-is-editor.php:1542
|
939 |
msgid "Whole - Search posts that include the whole search term"
|
940 |
msgstr ""
|
941 |
|
942 |
+
#: ../admin/class-is-editor.php:1544
|
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:1550
|
949 |
msgid "Keyword Stemming"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: ../admin/class-is-editor.php:1554
|
953 |
msgid "Select whether to search the base word of a searched keyword."
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: ../admin/class-is-editor.php:1555
|
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:1556
|
963 |
msgid "Not recommended to use when Fuzzy Matching option is set to Whole."
|
964 |
msgstr ""
|
965 |
|
966 |
+
#: ../admin/class-is-editor.php:1562
|
967 |
msgid "Also search base word of searched keyword"
|
968 |
msgstr ""
|
969 |
|
970 |
+
#: ../admin/class-is-editor.php:1575
|
971 |
msgid "Display sticky posts to the start of the search results page"
|
972 |
msgstr ""
|
973 |
|
974 |
+
#: ../admin/class-is-editor.php:1579
|
975 |
msgid "Display search form only for site administrator"
|
976 |
msgstr ""
|
977 |
|
978 |
+
#: ../admin/class-is-editor.php:1583
|
979 |
msgid "Disable this search form"
|
980 |
msgstr ""
|
981 |
|
982 |
+
#: ../admin/class-is-editor.php:1586
|
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:1590
|
989 |
msgid "Display an error for empty search query"
|
990 |
msgstr ""
|
991 |
|
1023 |
msgstr ""
|
1024 |
|
1025 |
#: ../admin/class-is-help.php:79 ../admin/class-is-list-table.php:158
|
1026 |
+
#: ../admin/class-is-settings-fields.php:425
|
1027 |
+
#: ../admin/class-is-settings-fields.php:457
|
1028 |
#: ../includes/class-is-search-form.php:522 ../includes/class-is-widget.php:71
|
1029 |
msgid "Edit"
|
1030 |
msgstr ""
|
1138 |
msgid "For more information:"
|
1139 |
msgstr ""
|
1140 |
|
1141 |
+
#: ../admin/class-is-help.php:112 ../admin/partials/settings-form.php:109
|
1142 |
msgid "Give us a rating"
|
1143 |
msgstr ""
|
1144 |
|
1175 |
msgid "d/m/Y"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: ../admin/class-is-settings-fields.php:137
|
1179 |
msgid "Header Search"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: ../admin/class-is-settings-fields.php:138
|
1183 |
msgid "Footer Search"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: ../admin/class-is-settings-fields.php:139
|
1187 |
msgid "Mobile Search"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: ../admin/class-is-settings-fields.php:140
|
1191 |
msgid "Custom CSS"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: ../admin/class-is-settings-fields.php:141
|
1195 |
msgid "Stopwords"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: ../admin/class-is-settings-fields.php:142
|
1199 |
msgid "Synonyms"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
+
#: ../admin/class-is-settings-fields.php:143
|
1203 |
msgid "Plugin Files"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
+
#: ../admin/class-is-settings-fields.php:152
|
1207 |
msgid "Menu Search Form Settings"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
+
#: ../admin/class-is-settings-fields.php:159
|
1211 |
+
msgid "Search Analytics"
|
1212 |
+
msgstr ""
|
1213 |
+
|
1214 |
+
#: ../admin/class-is-settings-fields.php:169
|
1215 |
msgid "Display search in menu and configure it using below options."
|
1216 |
msgstr ""
|
1217 |
|
1218 |
+
#: ../admin/class-is-settings-fields.php:176
|
1219 |
+
msgid "Configure search analytics settings."
|
1220 |
+
msgstr ""
|
1221 |
+
|
1222 |
+
#: ../admin/class-is-settings-fields.php:183
|
1223 |
msgid "Make search changes on entire website using below options."
|
1224 |
msgstr ""
|
1225 |
|
1226 |
+
#: ../admin/class-is-settings-fields.php:193
|
1227 |
msgid "Display search form on selected menu locations."
|
1228 |
msgstr ""
|
1229 |
|
1230 |
+
#: ../admin/class-is-settings-fields.php:209
|
1231 |
#, php-format
|
1232 |
msgid "No menu assigned to navigation menu location in the %sMenus screen%s."
|
1233 |
msgstr ""
|
1234 |
|
1235 |
+
#: ../admin/class-is-settings-fields.php:212
|
1236 |
msgid "Navigation menu location is not registered on the site."
|
1237 |
msgstr ""
|
1238 |
|
1239 |
+
#: ../admin/class-is-settings-fields.php:221
|
1240 |
msgid "Display search form on selected menus."
|
1241 |
msgstr ""
|
1242 |
|
1243 |
+
#: ../admin/class-is-settings-fields.php:235
|
1244 |
#, php-format
|
1245 |
msgid "No menu created in the %sMenus screen%s."
|
1246 |
msgstr ""
|
1247 |
|
1248 |
+
#: ../admin/class-is-settings-fields.php:254
|
1249 |
msgid "Display search form at the start of the navigation menu"
|
1250 |
msgstr ""
|
1251 |
|
1252 |
+
#: ../admin/class-is-settings-fields.php:260
|
1253 |
msgid "Select menu search form style."
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: ../admin/class-is-settings-fields.php:264
|
1257 |
msgid "Default"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
+
#: ../admin/class-is-settings-fields.php:265
|
1261 |
msgid "Dropdown"
|
1262 |
msgstr ""
|
1263 |
|
1264 |
+
#: ../admin/class-is-settings-fields.php:266
|
1265 |
msgid "Sliding"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
+
#: ../admin/class-is-settings-fields.php:267
|
1269 |
msgid "Full Width"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
+
#: ../admin/class-is-settings-fields.php:268
|
1273 |
msgid "Popup"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: ../admin/class-is-settings-fields.php:296
|
1277 |
msgid "Select menu magnifier icon color."
|
1278 |
msgstr ""
|
1279 |
|
1280 |
+
#: ../admin/class-is-settings-fields.php:307
|
1281 |
msgid "Display search form close icon"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
+
#: ../admin/class-is-settings-fields.php:314
|
1285 |
msgid "Add menu title to display in place of search icon."
|
1286 |
msgstr ""
|
1287 |
|
1288 |
+
#: ../admin/class-is-settings-fields.php:325
|
1289 |
msgid "Add class to search form menu item."
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: ../admin/class-is-settings-fields.php:329
|
1293 |
msgid "Add multiple classes seperated by space."
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
#: ../admin/class-is-settings-fields.php:335
|
1297 |
msgid "Select search form that will control menu search functionality."
|
1298 |
msgstr ""
|
1299 |
|
1300 |
+
#: ../admin/class-is-settings-fields.php:359
|
1301 |
+
#: ../admin/class-is-settings-fields.php:427
|
1302 |
+
#: ../admin/class-is-settings-fields.php:459 ../includes/class-is-widget.php:73
|
1303 |
msgid "Create New"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
+
#: ../admin/class-is-settings-fields.php:367
|
1307 |
msgid ""
|
1308 |
"Add Google Custom Search( CSE ) search form code that will replace default "
|
1309 |
"search form."
|
1310 |
msgstr ""
|
1311 |
|
1312 |
+
#: ../admin/class-is-settings-fields.php:381
|
1313 |
+
msgid "Enabled"
|
1314 |
+
msgstr ""
|
1315 |
+
|
1316 |
+
#: ../admin/class-is-settings-fields.php:382
|
1317 |
+
msgid "Disabled"
|
1318 |
+
msgstr ""
|
1319 |
+
|
1320 |
+
#: ../admin/class-is-settings-fields.php:384
|
1321 |
+
msgid "Google Analytics tracking for searches"
|
1322 |
+
msgstr ""
|
1323 |
+
|
1324 |
+
#: ../admin/class-is-settings-fields.php:386
|
1325 |
+
msgid "Uses Google Analytics to track searches."
|
1326 |
+
msgstr ""
|
1327 |
+
|
1328 |
+
#: ../admin/class-is-settings-fields.php:387
|
1329 |
+
#, php-format
|
1330 |
+
msgid "You need %s Google Analytics %s to be installed on your site."
|
1331 |
+
msgstr ""
|
1332 |
+
|
1333 |
+
#: ../admin/class-is-settings-fields.php:388
|
1334 |
+
msgid ""
|
1335 |
+
"Data will be visible inside Google Analytics 'Events' and 'Site Search' "
|
1336 |
+
"report."
|
1337 |
+
msgstr ""
|
1338 |
+
|
1339 |
+
#: ../admin/class-is-settings-fields.php:389
|
1340 |
+
msgid "Events will be as below:"
|
1341 |
+
msgstr ""
|
1342 |
+
|
1343 |
+
#: ../admin/class-is-settings-fields.php:390
|
1344 |
+
msgid "Category - Results Found / Nothing Found"
|
1345 |
+
msgstr ""
|
1346 |
+
|
1347 |
+
#: ../admin/class-is-settings-fields.php:391
|
1348 |
+
msgid "Action - Ivory Search - ID"
|
1349 |
+
msgstr ""
|
1350 |
+
|
1351 |
+
#: ../admin/class-is-settings-fields.php:392
|
1352 |
+
msgid "Label - Value of search term"
|
1353 |
+
msgstr ""
|
1354 |
+
|
1355 |
+
#: ../admin/class-is-settings-fields.php:393
|
1356 |
+
#, php-format
|
1357 |
+
msgid ""
|
1358 |
+
"Need to %s activate Site Search feature %s inside Google Analytics to "
|
1359 |
+
"display data inside 'Site Search' report."
|
1360 |
+
msgstr ""
|
1361 |
+
|
1362 |
+
#: ../admin/class-is-settings-fields.php:394
|
1363 |
+
msgid ""
|
1364 |
+
"Enable Site search Tracking option in Site Search Settings and set its "
|
1365 |
+
"parameters as below."
|
1366 |
+
msgstr ""
|
1367 |
+
|
1368 |
+
#: ../admin/class-is-settings-fields.php:395
|
1369 |
+
msgid "Query parameter - s"
|
1370 |
+
msgstr ""
|
1371 |
+
|
1372 |
+
#: ../admin/class-is-settings-fields.php:396
|
1373 |
+
msgid "Category parameter - id / result"
|
1374 |
+
msgstr ""
|
1375 |
+
|
1376 |
+
#: ../admin/class-is-settings-fields.php:406
|
1377 |
msgid "Select search form to display in site header( Not Menu )."
|
1378 |
msgstr ""
|
1379 |
|
1380 |
+
#: ../admin/class-is-settings-fields.php:418
|
1381 |
+
#: ../admin/class-is-settings-fields.php:450
|
1382 |
msgid "None"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
+
#: ../admin/class-is-settings-fields.php:430
|
1386 |
msgid ""
|
1387 |
"Please note that the above option displays search form in site header and "
|
1388 |
"not in navigation menu."
|
1389 |
msgstr ""
|
1390 |
|
1391 |
+
#: ../admin/class-is-settings-fields.php:438
|
1392 |
msgid "Select search form to display in site footer."
|
1393 |
msgstr ""
|
1394 |
|
1395 |
+
#: ../admin/class-is-settings-fields.php:474
|
1396 |
msgid "Display search form in site header on mobile devices"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
+
#: ../admin/class-is-settings-fields.php:477
|
1400 |
msgid ""
|
1401 |
"If this site uses cache then please select the below option to display "
|
1402 |
"search form on mobile."
|
1403 |
msgstr ""
|
1404 |
|
1405 |
+
#: ../admin/class-is-settings-fields.php:484
|
1406 |
msgid "This site uses cache"
|
1407 |
msgstr ""
|
1408 |
|
1409 |
+
#: ../admin/class-is-settings-fields.php:492
|
1410 |
msgid "Add custom css code."
|
1411 |
msgstr ""
|
1412 |
|
1413 |
+
#: ../admin/class-is-settings-fields.php:503
|
1414 |
msgid "Enter stopwords here that will not be searched."
|
1415 |
msgstr ""
|
1416 |
|
1417 |
+
#: ../admin/class-is-settings-fields.php:507
|
1418 |
msgid "Please separate multiple words with commas."
|
1419 |
msgstr ""
|
1420 |
|
1421 |
+
#: ../admin/class-is-settings-fields.php:515
|
1422 |
msgid "Add synonyms here to make the searches find better results."
|
1423 |
msgstr ""
|
1424 |
|
1425 |
+
#: ../admin/class-is-settings-fields.php:516
|
1426 |
msgid ""
|
1427 |
"If you add bird = crow to the list of synonyms, searches for bird "
|
1428 |
"automatically become a search for bird crow and will thus match to posts "
|
1429 |
"that include either bird or crow."
|
1430 |
msgstr ""
|
1431 |
|
1432 |
+
#: ../admin/class-is-settings-fields.php:517
|
1433 |
msgid ""
|
1434 |
"This only works for search forms configured to search any of the search "
|
1435 |
"terms(OR) and not all search terms(AND) in the search form Options."
|
1436 |
msgstr ""
|
1437 |
|
1438 |
+
#: ../admin/class-is-settings-fields.php:522
|
1439 |
msgid "The format here is key = value"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
+
#: ../admin/class-is-settings-fields.php:523
|
1443 |
msgid "Please add every synonyms key = value pairs on new line."
|
1444 |
msgstr ""
|
1445 |
|
1446 |
+
#: ../admin/class-is-settings-fields.php:533
|
1447 |
msgid ""
|
1448 |
"Enable below options to disable loading of plugin CSS and JavaScript files."
|
1449 |
msgstr ""
|
1450 |
|
1451 |
+
#: ../admin/class-is-settings-fields.php:537
|
1452 |
msgid "Do not load plugin CSS files"
|
1453 |
msgstr ""
|
1454 |
|
1455 |
+
#: ../admin/class-is-settings-fields.php:538
|
1456 |
msgid "Do not load plugin JavaScript files"
|
1457 |
msgstr ""
|
1458 |
|
1459 |
+
#: ../admin/class-is-settings-fields.php:556
|
1460 |
msgid ""
|
1461 |
"If checked, you have to add following plugin file code into your child theme "
|
1462 |
"CSS file."
|
1463 |
msgstr ""
|
1464 |
|
1465 |
+
#: ../admin/class-is-settings-fields.php:560
|
1466 |
msgid ""
|
1467 |
"If checked, you have to add following plugin files code into your child "
|
1468 |
"theme JavaScript file."
|
1469 |
msgstr ""
|
1470 |
|
1471 |
+
#: ../admin/class-is-settings-fields.php:576
|
1472 |
msgid "Warning: Use with caution."
|
1473 |
msgstr ""
|
1474 |
|
1475 |
+
#: ../admin/class-is-settings-fields.php:581
|
1476 |
msgid ""
|
1477 |
"Do not use Default Search Form to control WordPress default search "
|
1478 |
"functionality"
|
1479 |
msgstr ""
|
1480 |
|
1481 |
+
#: ../admin/class-is-settings-fields.php:590
|
1482 |
msgid "Disable search functionality on entire website"
|
1483 |
msgstr ""
|
1484 |
|
1485 |
+
#: ../admin/class-is-settings-fields.php:600
|
1486 |
msgid ""
|
1487 |
"Display easy edit links of search form on the website frontend to the admin "
|
1488 |
"users"
|
1544 |
" 'Cancel' to stop, 'OK' to reset."
|
1545 |
msgstr ""
|
1546 |
|
1547 |
+
#: ../admin/partials/search-form.php:196
|
1548 |
+
#: ../admin/partials/settings-form.php:103
|
1549 |
msgid "Information"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
+
#: ../admin/partials/search-form.php:199
|
1553 |
+
#: ../admin/partials/settings-form.php:106
|
1554 |
msgid "Documentation"
|
1555 |
msgstr ""
|
1556 |
|
1557 |
#: ../admin/partials/search-form.php:201
|
1558 |
+
#: ../admin/partials/settings-form.php:108
|
1559 |
msgid "Contact Us"
|
1560 |
msgstr ""
|
1561 |
|
1574 |
|
1575 |
#: ../includes/class-is-admin-public.php:177
|
1576 |
#: ../includes/class-is-search-form.php:451
|
1577 |
+
#: ../includes/class-is-search-form.php:500 ../public/class-is-public.php:195
|
1578 |
+
#: ../public/class-is-public.php:244
|
1579 |
msgid "Search"
|
1580 |
msgstr ""
|
1581 |
|
public/class-is-public.php
CHANGED
@@ -60,6 +60,33 @@ class IS_Public
|
|
60 |
IS_VERSION,
|
61 |
true
|
62 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
wp_register_script(
|
64 |
'ivory-ajax-search-scripts',
|
65 |
plugins_url( '/public/js/ivory-ajax-search.js', IS_PLUGIN_FILE ),
|
@@ -829,7 +856,7 @@ class IS_Public
|
|
829 |
function wp_footer()
|
830 |
{
|
831 |
|
832 |
-
if ( isset( $this->opt['menu_style'] ) && 'default' !== $this->opt['menu_style'] && isset( $this->opt['menu_magnifier_color'] ) ) {
|
833 |
echo '<style type="text/css" media="screen">' ;
|
834 |
echo '.is-menu path.search-icon-path { fill: ' . $this->opt['menu_magnifier_color'] . ';}' ;
|
835 |
echo 'body .popup-search-close:after, body .search-close:after { border-color: ' . $this->opt['menu_magnifier_color'] . ';}' ;
|
60 |
IS_VERSION,
|
61 |
true
|
62 |
);
|
63 |
+
$is_analytics = get_option( 'is_analytics', array() );
|
64 |
+
$analytics_disabled = ( isset( $is_analytics['disable_analytics'] ) ? $is_analytics['disable_analytics'] : 0 );
|
65 |
+
|
66 |
+
if ( !$analytics_disabled ) {
|
67 |
+
$is_temp = array(
|
68 |
+
'is_analytics_enabled' => 1,
|
69 |
+
);
|
70 |
+
|
71 |
+
if ( is_search() ) {
|
72 |
+
if ( isset( $_GET['id'] ) ) {
|
73 |
+
$is_temp['is_id'] = $_GET['id'];
|
74 |
+
}
|
75 |
+
if ( isset( $_GET['s'] ) ) {
|
76 |
+
$is_temp['is_label'] = $_GET['s'];
|
77 |
+
}
|
78 |
+
|
79 |
+
if ( 0 == $wp_query->found_posts ) {
|
80 |
+
$is_temp['is_cat'] = 'Nothing Found';
|
81 |
+
} else {
|
82 |
+
$is_temp['is_cat'] = 'Results Found';
|
83 |
+
}
|
84 |
+
|
85 |
+
}
|
86 |
+
|
87 |
+
wp_localize_script( 'ivory-search-scripts', 'IvorySearchVars', $is_temp );
|
88 |
+
}
|
89 |
+
|
90 |
wp_register_script(
|
91 |
'ivory-ajax-search-scripts',
|
92 |
plugins_url( '/public/js/ivory-ajax-search.js', IS_PLUGIN_FILE ),
|
856 |
function wp_footer()
|
857 |
{
|
858 |
|
859 |
+
if ( isset( $this->opt['menu_style'] ) && 'default' !== $this->opt['menu_style'] && isset( $this->opt['menu_magnifier_color'] ) && !empty($this->opt['menu_magnifier_color']) ) {
|
860 |
echo '<style type="text/css" media="screen">' ;
|
861 |
echo '.is-menu path.search-icon-path { fill: ' . $this->opt['menu_magnifier_color'] . ';}' ;
|
862 |
echo 'body .popup-search-close:after, body .search-close:after { border-color: ' . $this->opt['menu_magnifier_color'] . ';}' ;
|
public/js/ivory-ajax-search.js
CHANGED
@@ -162,7 +162,6 @@
|
|
162 |
});
|
163 |
});
|
164 |
|
165 |
-
|
166 |
function is_ajax_process_request( self, page ) {
|
167 |
|
168 |
if( ! page ) {
|
@@ -216,6 +215,10 @@
|
|
216 |
data : data,
|
217 |
type : 'POST',
|
218 |
success : function( data ) {
|
|
|
|
|
|
|
|
|
219 |
search_form.find('.is-loader-image').hide();
|
220 |
search_form.removeClass('processing');
|
221 |
|
162 |
});
|
163 |
});
|
164 |
|
|
|
165 |
function is_ajax_process_request( self, page ) {
|
166 |
|
167 |
if( ! page ) {
|
215 |
data : data,
|
216 |
type : 'POST',
|
217 |
success : function( data ) {
|
218 |
+
if ( typeof IvorySearchVars !== "undefined" && typeof IvorySearchVars.is_analytics_enabled !== "undefined" ) {
|
219 |
+
var results_found = $( data ).find('.is-ajax-search-no-result').length ? 'Nothing Found' : 'Results Found';
|
220 |
+
ivory_search_analytics( form_id, search_term, results_found );
|
221 |
+
}
|
222 |
search_form.find('.is-loader-image').hide();
|
223 |
search_form.removeClass('processing');
|
224 |
|
public/js/ivory-search.js
CHANGED
@@ -43,6 +43,12 @@
|
|
43 |
$( '#is-popup-wrapper, .is-ajax-search-result, .is-ajax-search-details' ).hide();
|
44 |
}
|
45 |
} );
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
} );
|
47 |
|
48 |
$( document ).keyup( function( e ) {
|
@@ -79,4 +85,32 @@
|
|
79 |
}
|
80 |
}
|
81 |
});
|
82 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
$( '#is-popup-wrapper, .is-ajax-search-result, .is-ajax-search-details' ).hide();
|
44 |
}
|
45 |
} );
|
46 |
+
if ( typeof IvorySearchVars !== "undefined" && typeof IvorySearchVars.is_analytics_enabled !== "undefined" ) {
|
47 |
+
var id = ( typeof IvorySearchVars.is_id !== "undefined" ) ? IvorySearchVars.is_id : 'Default';
|
48 |
+
var label = ( typeof IvorySearchVars.is_label !== "undefined" ) ? IvorySearchVars.is_label : '';
|
49 |
+
var category = ( typeof IvorySearchVars.is_cat !== "undefined" ) ? IvorySearchVars.is_cat : '';
|
50 |
+
ivory_search_analytics( id, label, category );
|
51 |
+
}
|
52 |
} );
|
53 |
|
54 |
$( document ).keyup( function( e ) {
|
85 |
}
|
86 |
}
|
87 |
});
|
88 |
+
|
89 |
+
} )( jQuery );
|
90 |
+
|
91 |
+
function ivory_search_analytics( id, label, category ) {
|
92 |
+
try {
|
93 |
+
// YOAST uses __gaTracker, if not defined check for ga, if nothing go null, FUN EH??
|
94 |
+
var _ga = typeof __gaTracker == "function" ? __gaTracker : (typeof ga == "function" ? ga : false);
|
95 |
+
var _gtag = typeof gtag == "function" ? gtag : false;
|
96 |
+
if ( _gtag !== false ) {
|
97 |
+
_gtag('event', 'Ivory Search - '+id, {
|
98 |
+
'event_label': label,
|
99 |
+
'event_category': category
|
100 |
+
});
|
101 |
+
return;
|
102 |
+
}
|
103 |
+
|
104 |
+
if ( _ga !== false ) {
|
105 |
+
_ga('send', {
|
106 |
+
hitType: 'event',
|
107 |
+
eventCategory: category,
|
108 |
+
eventAction: 'Ivory Search - '+id,
|
109 |
+
eventLabel: label
|
110 |
+
});
|
111 |
+
_ga( 'send', 'pageview', '/?s=' + encodeURIComponent( label ) + '&id=' + encodeURIComponent( id )+ '&result=' + encodeURIComponent( category ) );
|
112 |
+
}
|
113 |
+
|
114 |
+
} catch (error) {
|
115 |
+
}
|
116 |
+
}
|
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.
|
9 |
License: GPLv2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -192,6 +192,9 @@ Yes we do. We try our best to help free users with customisation requests and we
|
|
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.
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 5.4
|
7 |
Requires PHP: 5.2.4
|
8 |
+
Stable tag: 4.5
|
9 |
License: GPLv2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
192 |
|
193 |
== Changelog ==
|
194 |
|
195 |
+
= 4.5 =
|
196 |
+
* Added - Option to track searches in google search analytics.
|
197 |
+
|
198 |
= 4.4.14 =
|
199 |
* Fixed - Page was scrolling to bottom clicking on menu search icon.
|
200 |
* Added - is_show_menu_link_title filter to remove menu search link title.
|