Changeset 1690223
- Timestamp:
- 07/04/2017 04:08:05 AM (9 years ago)
- Location:
- wp-autosearch/trunk
- Files:
-
- 4 edited
-
assert/css/admin-style.css (modified) (9 diffs)
-
helper/options.php (modified) (14 diffs)
-
readme.txt (modified) (7 diffs)
-
wp-autosearch.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-autosearch/trunk/assert/css/admin-style.css
r1532845 r1690223 40 40 41 41 .postname input[type="checkbox"]{ 42 display:none;42 /* display:none;*/ 43 43 44 44 } … … 152 152 * 153 153 **************************/ 154 //@import url(https://fonts.googleapis.com/css?family=PT+Sans:300|PT+Sans:400|PT+Sans:700);155 156 154 .wpsearch, 157 .wpsearch *{155 .wpsearch{ 158 156 font:normal 13px/100% 'PT Sans', Verdana,Tahoma,sans-serif; 159 157 padding: auto; … … 184 182 } 185 183 186 .wpsearch select { 187 background: #FFF; 184 .Other_option.wpsearch select { 185 background: #cc0e0e; 186 color: white; 188 187 } 189 188 … … 223 222 } 224 223 #wpsearch input, #wpsearch textarea, #wpsearch select { 225 border: 1px solid #E5E5E5;224 /*border: 1px solid #E5E5E5; 226 225 box-shadow: none; 227 226 height: 30px; … … 229 228 outline: 0 none; 230 229 padding: 3px; 231 width: 300px; 230 width: 300px; */ 232 231 } 233 232 … … 480 479 height:150px; 481 480 line-height:100%; 481 border: 3px solid; 482 482 } 483 483 #wpsearch input:hover,#wpsearch textarea:hover,#wpsearch input:focus,#wpsearch textarea:focus { … … 697 697 #wpsearch fieldset fieldset { 698 698 background: none repeat scroll 0 0 #FEFEFE; 699 border: 1px dotted #DDDDDD;699 border: 8px dotted #DDDDDD; 700 700 font-size: 0.9em; 701 701 /*line-height: 45px;*/ … … 1484 1484 } 1485 1485 1486 /***************** 1487 * Yes no button 1488 ****************/ 1489 input#split_results_by_type { 1490 display: none; 1491 } 1492 1493 /***************** 1494 * Yes no button 1495 ****************/ 1496 input#split_results_by_type { 1497 display: none; 1498 } 1486 1487 1499 1488 /***************** 1500 1489 * Yes no button 1501 1490 ****************/ 1502 1491 .autocomplete_taxo,.wp_autosearch_post_type { 1503 display: none!important;1492 /*display: none!important;*/ 1504 1493 } 1505 1494 input#search_tags ,#thumb_image_display,#get_first_image ,#force_resize_first_image ,#thumb_image_crop ,#display_more_bar,#display_result_title ,#enable_token 1506 1495 #search_terms,#search_title,#search_content,#search_excerpt,#search_exactonly,#search_terms,#enable_token,#show_author,#show_date,#description_result,#description_result,.autocomplete_taxo,#search_comments{ 1507 display: none;1496 /* display: none;*/ 1508 1497 } 1509 1498 … … 1524 1513 margin-top: -17px; 1525 1514 } 1515 .wpauto_pro_version{ 1516 color:#ea0a43; 1517 } 1518 .postname{ 1519 padding: 10px; 1520 } -
wp-autosearch/trunk/helper/options.php
r1532845 r1690223 32 32 if (isset($_POST['wp_autosearch_submit']) && $is_secure) { 33 33 $wp_autosearch = array(); 34 34 35 $_POST['post_types'] = (isset($_POST['post_types']) && count((array) $_POST['post_types']) > 0) ? $_POST['post_types'] : array('post'); 36 35 37 $wp_autosearch['no_of_results'] = $wizardinfosys_autosearch->helper->wi_prepare_parameter($_POST['no_of_results'], true); 36 38 $wp_autosearch['description_limit'] = $wizardinfosys_autosearch->helper->wi_prepare_parameter($_POST['description_limit'], true); 37 38 $wp_autosearch['excluded_cats'] = $wizardinfosys_autosearch->helper->wi_prepare_parameter(explode(',', $_POST['excluded_cats']), true); 39 $wp_autosearch['excluded_cats'] = $wizardinfosys_autosearch->helper->wi_prepare_parameter(explode(',', $_POST['excluded_cats']), true); 39 40 $wp_autosearch['full_search_url'] = $wizardinfosys_autosearch->helper->wi_prepare_parameter($_POST['full_search_url'], false); 40 41 $wp_autosearch['min_chars'] = $wizardinfosys_autosearch->helper->wi_prepare_parameter($_POST['min_chars'], false); … … 173 174 ?> 174 175 <div class="postname" id="posttype-<?php echo $post_type; ?>"> 175 <div class="wpsearchYesNo <?php echo $active; ?>"> 176 <label for="wpsearchtext_2"> 176 <label for="wpsearchtext_2"> 177 177 <?php _e('Search in ', $wizardinfosys_autosearch->text_domain); ?><?php _e($post_type,$wizardinfosys_autosearch->text_domain); ?> 178 178 </label> 179 <?php echo '<input type="checkbox" hidd="1" class="wp_autosearch_post_type" id="postname-' . $post_type . '" name="post_types[]" value="' . $post_type . '" ' . $checked . ' /> '; ?> 180 <div class="wpsearchYesNoInner"></div> 181 <div class="triggerer"></div> 182 </div> 179 <?php echo '<input type="checkbox" class="" id="postname-' . $post_type . '" name="post_types[]" value="' . $post_type . '" ' . $checked . ' /> '; ?> 180 183 181 </div> 184 185 182 <?php 186 183 } … … 198 195 ?> 199 196 <fieldset> 200 201 202 197 <legend><?php _e('Search in Taxonomy type', $wizardinfosys_autosearch->text_domain); ?></legend> 203 198 <?php … … 216 211 217 212 foreach ($taxonomy_types as $taxonomy) { 218 219 213 $checked_taxonomy = (in_array($taxonomy,$autocomplet_taxonomy)) ? 'checked="checked"' : ""; 220 214 $active = (in_array($taxonomy, $autocomplet_taxonomy)) ? 'active"' : ""; 221 215 ?> 222 <div class="wpsearchYesNo <?php echo $active; ?>">223 216 <label for="wpsearch-terms"><?php _e($taxonomy, $wizardinfosys_autosearch->text_domain); ?>:</label> 224 <input name="autocomplete_taxonomies[]" hidd="1" class="autocomplete_taxo" id="autocomplete_taxonomies-<?php echo $taxonomy; ?>" value="<?php echo $taxonomy; ?>" type="checkbox" <?php echo $checked_taxonomy; ?>> 225 226 <div class="wpsearchYesNoInner"></div> 227 <div class="triggerer"></div> 228 </div> 217 <input name="autocomplete_taxonomies[]" class="autocomplete_taxo" id="autocomplete_taxonomies-<?php echo $taxonomy; ?>" value="<?php echo $taxonomy; ?>" type="checkbox" <?php echo $checked_taxonomy; ?>> 218 219 229 220 <br/> 230 221 <br /> … … 236 227 <legend><?php _e('Other Options', $wizardinfosys_autosearch->text_domain); ?> </legend> 237 228 238 <div class=" wpsearchYesNo <?php echo $active_class; ?>">229 <div class="Other_option"> 239 230 <label for="split_results_by_type"><?php _e('Split results by post type', $wizardinfosys_autosearch->text_domain); ?>:</label> 240 <input name="split_results_by_type" hidd="1" id="split_results_by_type" value="checked" type="checkbox" <?php if ($wp_autosearch_suggest_options['split_results_by_type'] == 'true') echo 'checked="checked"'; ?>> 241 242 <div class="wpsearchYesNoInner"></div> 243 <div class="triggerer"></div> 231 <input name="split_results_by_type" id="split_results_by_type" value="checked" type="checkbox" <?php if ($wp_autosearch_suggest_options['split_results_by_type'] == 'true') echo 'checked="checked"'; ?>> 244 232 </div> 245 233 246 234 <br /> 247 235 <br /> 248 249 250 <?php 251 if ($wp_autosearch_suggest_options['search_tags'] == 'true') { 252 $active_class = 'active'; 253 } else { 254 $active_class = ''; 255 } 256 ?> 257 258 <div class="wpsearchYesNo <?php echo $active_class; ?>" id="search_tagss"> 236 <div id="search_tagss"> 259 237 <label for="search_tags"><?php _e('Search in terms?(tags)', $wizardinfosys_autosearch->text_domain); ?>:</label> 260 <input name="search_tags" hidd="1" id="search_tags" value="checked" type="checkbox" <?php if ($wp_autosearch_suggest_options['search_tags'] == 'true') echo 'checked="checked"'; ?>> 261 262 <div class="wpsearchYesNoInner"></div> 263 <div class="triggerer"></div> 264 </div> 265 266 <br/> 267 <br/> 268 <?php 269 if ($wp_autosearch_suggest_options['search_terms'] == 'true') { 270 $active_class = 'active'; 271 } else { 272 $active_class = ''; 273 } 274 ?> 275 276 <div class="wpsearchYesNo <?php echo $active_class; ?>"> 238 <input name="search_tags" id="search_tags" value="checked" type="checkbox" <?php if ($wp_autosearch_suggest_options['search_tags'] == 'true') echo 'checked="checked"'; ?>> 239 </div> 240 241 <br/> 242 <br/> 243 244 245 <div> 277 246 <label for="wpsearch-terms"><?php _e('Search in terms?(categories)', $wizardinfosys_autosearch->text_domain); ?>:</label> 278 <input name="search_terms" hidd="1" id="search_terms" value="checked" type="checkbox" <?php if ($wp_autosearch_suggest_options['search_terms'] == 'true') echo 'checked="checked"'; ?>> 279 280 <div class="wpsearchYesNoInner"></div> 281 <div class="triggerer"></div> 282 </div> 283 284 285 286 <br/> 287 <br /> 288 <br/> 289 <?php 290 if ($wp_autosearch_suggest_options['search_comments']=='true') { 291 $active_class = 'active'; 292 } else { 293 $active_class = ''; 294 } 295 ?> 296 <div class="wpsearchYesNo <?php echo $active_class; ?>"> 247 <input name="search_terms" id="search_terms" value="checked" type="checkbox" <?php if ($wp_autosearch_suggest_options['search_terms'] == 'true') echo 'checked="checked"'; ?>> 248 </div> 249 250 <br/> 251 <br /> 252 <br/> 253 254 <div> 297 255 <label for="search_comments"><?php _e('Search comments', $wizardinfosys_autosearch->text_domain); ?></label> 298 <input name="search_comments" hidd="1" id="search_comments" value="checked" type="checkbox" <?php if ($wp_autosearch_suggest_options['search_comments'] == 'true') echo 'checked="checked"'; ?>> 299 <div class="wpsearchYesNoInner"></div> 300 <div class="triggerer"></div> 256 <input name="search_comments" id="search_comments" value="checked" type="checkbox" <?php if ($wp_autosearch_suggest_options['search_comments'] == 'true') echo 'checked="checked"'; ?>> 301 257 </div> 302 258 <br /> … … 305 261 <br/> 306 262 307 <?php 308 if ($wp_autosearch_suggest_options['search_title'] == 'true') { 309 $active_class = 'active'; 310 } else { 311 $active_class = ''; 312 } 313 ?> 314 <div class="wpsearchYesNo <?php echo $active_class; ?>"> 263 264 <div> 315 265 <label for="search-title"><?php _e('Search in title?', $wizardinfosys_autosearch->text_domain); ?></label> 316 <input name="search_title" hidd="1" id="search_title" value="checked" type="checkbox" <?php if ($wp_autosearch_suggest_options['search_title'] == 'true') echo 'checked="checked"'; ?>> 317 <div class="wpsearchYesNoInner"></div> 318 <div class="triggerer"></div> 319 </div> 320 <br/> 321 <br /> 322 <br/> 323 324 <?php 325 if ($wp_autosearch_suggest_options['search_content'] == 'true') { 326 $active_class = 'active'; 327 } else { 328 $active_class = ''; 329 } 330 ?> 331 332 <div class="wpsearchYesNo <?php echo $active_class; ?>"> 266 <input name="search_title" id="search_title" value="checked" type="checkbox" <?php if ($wp_autosearch_suggest_options['search_title'] == 'true') echo 'checked="checked"'; ?>> 267 268 </div> 269 <br/> 270 <br /> 271 <br/> 272 273 <div> 333 274 <label for="wpsearch-content"><?php _e('Search in content?', $wizardinfosys_autosearch->text_domain); ?></label> 334 <input name="search_content" hidd="1" id="search_content" value="checked" type="checkbox" <?php if ($wp_autosearch_suggest_options['search_title'] == 'true') echo 'checked="checked"'; ?>> 335 <div class="wpsearchYesNoInner"></div> 336 <div class="triggerer"></div> 337 </div> 338 <br/> 339 <br /> 340 <br /> 275 <input name="search_content" id="search_content" value="checked" type="checkbox" <?php if ($wp_autosearch_suggest_options['search_title'] == 'true') echo 'checked="checked"'; ?>> 341 276 342 <div class="wpsearchYesNo disabledbutton"> 277 </div> 278 <br/> 279 <br /> 280 <br /> 281 282 <div class="disabledbutton"> 343 283 <label for="wpsearch-exact"><?php _e('Show exact matches only?', $wizardinfosys_autosearch->text_domain); ?></label> 344 <input name="search_exactonly" hidd="1" id="search_exactonly" disabled="disabled" value="checked" type="checkbox"> 345 <div class="wpsearchYesNoInner"></div> 346 <div class="triggerer"></div> 284 <input name="search_exactonly" id="search_exactonly" type="checkbox"> 285 <span class="wpauto_pro_version">Pro</span> 347 286 </div> 348 287 <br /> … … 392 331 <br /> 393 332 <div class="disabledbutton"> 394 <label style="vertical-align: top;" for="wpextarea">395 <?php _e('Exclude Posts by ID (comma separated post ID-s eg: 2, 18, 300 ) ', $wizardinfosys_autosearch->text_domain); ?>:< /label>333 <label style="vertical-align:top;" for="wpextarea"> 334 <?php _e('Exclude Posts by ID (comma separated post ID-s eg: 2, 18, 300 ) ', $wizardinfosys_autosearch->text_domain); ?>:<span class="wpauto_pro_version">Pro</span> </label> 396 335 <textarea id="excluded_ids" class="ProVersion" name="excluded_ids" disabled><?php echo implode(', ', $wp_autosearch_suggest_options['excluded_ids']);?></textarea> 397 336 <br/> 398 337 <br/> 399 338 <label style="vertical-align:top;" for="wptextarea"> 400 <?php _e('Exclude Terms/Category by ID (comma separated term ID-s eg: 2, 18, 300 ) ', $wizardinfosys_autosearch->text_domain); ?>:< /label>339 <?php _e('Exclude Terms/Category by ID (comma separated term ID-s eg: 2, 18, 300 ) ', $wizardinfosys_autosearch->text_domain); ?>:<span class="wpauto_pro_version">Pro</span></label> 401 340 <textarea id="excluded_cats" class="ProVersion" name="excluded_cats" disabled ><?php echo implode(', ', $wp_autosearch_suggest_options['excluded_cats']); ?></textarea> 402 403 341 <br/> 404 342 <br/> … … 412 350 <br /> 413 351 <div class="disabledbutton"> 414 <label for="sortorder"><?php _e('Order of Types', $wizardinfosys_autosearch->text_domain); ?>: <span id="form_label"></span></label>352 <label for="sortorder"><?php _e('Order of Types', $wizardinfosys_autosearch->text_domain); ?>: <span class="wpauto_pro_version">Pro</span></label> 415 353 <select name="autocomplete_sortorder" class="ProVersion" id="autocomplete_sortorder" disabled="disabled"> 416 354 <option value="" selected="selected"><?php _e('Select type',$wizardinfosys_autosearch->text_domain) ?></option> … … 438 376 } 439 377 ?> 440 <div class=" wpsearchYesNo <?php echo $active_class; ?>">378 <div class=""> 441 379 <label for="thumb_image_display"><?php _e('Show Thumbnail images in results?', $wizardinfosys_autosearch->text_domain); ?>:</label> 442 <input name="thumb_image_display" hidd="1" id="thumb_image_display" value="checked" type="checkbox" <?php if ($wp_autosearch_suggest_options['thumb_image_display'] == 'true') echo 'checked="checked"'; ?>> 443 <div class="wpsearchYesNoInner"></div> 444 <div class="triggerer"></div> 445 </div> 446 447 380 <input name="thumb_image_display" id="thumb_image_display" value="checked" type="checkbox" <?php if ($wp_autosearch_suggest_options['thumb_image_display'] == 'true') echo 'checked="checked"'; ?>> 381 </div> 448 382 449 383 <br /> … … 458 392 <br/> 459 393 <br/> 460 <?php 461 if ($wp_autosearch_suggest_options['get_first_image'] == 'true') { 462 $active_class = 'active'; 463 } else { 464 $active_class = ''; 465 } 466 ?> 467 <div class="wpsearchYesNo <?php echo $active_class; ?>"> 394 395 <div> 468 396 469 397 <label for="get_first_image"><?php _e('Get first post image', $wizardinfosys_autosearch->text_domain); ?>:</label> 470 398 <input name="get_first_image" hidd="1" id="get_first_image" value="checked" type="checkbox" <?php if ($wp_autosearch_suggest_options['get_first_image'] == 'true') echo 'checked="checked"'; ?>> 471 <div class="wpsearchYesNoInner"></div> 472 <div class="triggerer"></div> 473 </div> 474 475 <br /> 476 <br /> 477 <?php 478 if ($wp_autosearch_suggest_options['force_resize_first_image'] == 'true') { 479 $active_class = 'active'; 480 } else { 481 $active_class = ''; 482 } 483 ?> 484 <div class="wpsearchYesNo <?php echo $active_class; ?>"> 399 </div> 400 401 <br /> 402 <br /> 403 <div> 485 404 486 405 <label for="force_resize_first_image"><?php _e('Force resize first post image', $wizardinfosys_autosearch->text_domain); ?>:</label> 487 406 <input name="force_resize_first_image" hidd="1" id="force_resize_first_image" value="checked" type="checkbox" <?php if ($wp_autosearch_suggest_options['force_resize_first_image'] == 'true') echo 'checked="checked"'; ?>> 488 <div class="wpsearchYesNoInner"></div> 489 <div class="triggerer"></div> 490 </div> 491 492 493 <br/> 494 <br/> 495 496 <?php 497 if ($wp_autosearch_suggest_options['thumb_image_crop'] == 'true') { 498 $active_class = 'active'; 499 } else { 500 $active_class = ''; 501 } 502 ?> 503 <div class="wpsearchYesNo <?php echo $active_class; ?>"> 407 </div> 408 409 410 <br/> 411 <br/> 412 413 414 <div> 504 415 <label for="thumb_image_crop"><?php _e('Crop', $wizardinfosys_autosearch->text_domain); ?>:</label> 505 416 <input name="thumb_image_crop" hidd="1" id="thumb_image_crop" value="checked" type="checkbox" <?php if ($wp_autosearch_suggest_options['thumb_image_crop'] == 'true') echo 'checked="checked"'; ?>> 506 <div class="wpsearchYesNoInner"></div> 507 <div class="triggerer"></div> 417 508 418 </div> 509 419 <br /> … … 524 434 <legend><?php _e('Frontend Search Settings', $wizardinfosys_autosearch->text_domain); ?></legend> 525 435 <div class="inside" > 526 527 <?php 528 if ($wp_autosearch_suggest_options['display_more_bar'] == 'true') { 529 $active_class = 'active'; 530 } else { 531 $active_class = ''; 532 } 533 ?> 534 <div class="wpsearchYesNo <?php echo $active_class; ?>"> 436 <div> 535 437 <label for="display_more_bar"><?php _e('Show More results.. text in the bottom of the search box?', $wizardinfosys_autosearch->text_domain); ?>:</label> 536 438 <input name="display_more_bar" hidd="1" id="display_more_bar" value="checked" type="checkbox" <?php if ($wp_autosearch_suggest_options['display_more_bar'] == 'true') echo 'checked="checked"'; ?>> 537 <div class="wpsearchYesNoInner"></div> 538 <div class="triggerer"></div> 539 </div> 540 541 542 543 <br/> 544 <br/> 545 <?php 546 if ($wp_autosearch_suggest_options['display_result_title'] == 'true') { 547 $active_class = 'active'; 548 } else { 549 $active_class = ''; 550 } 551 ?> 552 <div class="wpsearchYesNo <?php echo $active_class; ?>"> 439 </div> 440 441 <br/> 442 <br/> 443 <div> 553 444 <label for="display_result_title"><?php _e('Display result title', $wizardinfosys_autosearch->text_domain); ?>:</label> 554 445 <input name="display_result_title" hidd="1" id="display_result_title" value="checked" type="checkbox" <?php if ($wp_autosearch_suggest_options['display_result_title'] == 'true') echo 'checked="checked"'; ?>> 555 <div class="wpsearchYesNoInner"></div> 556 <div class="triggerer"></div> 557 </div> 558 559 560 <br /> 561 <br /> 562 563 <?php 564 if ($wp_autosearch_suggest_options['enable_token'] == 'true') { 565 $active_class = 'active'; 566 } else { 567 $active_class = ''; 568 } 569 ?> 570 <div class="wpsearchYesNo <?php echo $active_class; ?>"> 446 447 </div> 448 <br /> 449 <br /> 450 451 <div> 571 452 <label for="enable_token"><?php _e('Enable token', $wizardinfosys_autosearch->text_domain); ?>:</label> 572 453 <input name="enable_token" hidd="1" id="enable_token" value="checked" type="checkbox" <?php if ($wp_autosearch_suggest_options['enable_token'] == 'true') echo 'checked="checked"'; ?>> 573 <div class="wpsearchYesNoInner"></div> 574 <div class="triggerer"></div> 454 575 455 </div> 576 456 … … 615 495 <label for="show_author"><?php _e('Show author in results?', $wizardinfosys_autosearch->text_domain); ?>:</label> 616 496 <input name="show_author" hidd="0" disabled id="show_author" value="checked" type="checkbox"> 617 <div class="wpsearchYesNoInner"></div> 618 <div class="triggerer"></div> 619 497 620 498 </div> 621 499 <br/> … … 626 504 <label for="show_date"><?php _e('Show date in results?', $wizardinfosys_autosearch->text_domain); ?>:</label> 627 505 <input name="show_date" hidd="1" id="show_date" value="checked" type="checkbox"> 628 <div class="wpsearchYesNoInner"></div> 629 <div class="triggerer"></div> 506 630 507 </div> 631 508 <br/> … … 636 513 <input name="description_result" hidd="1" id="description_result" value="checked" type="checkbox"> 637 514 638 <div class="wpsearchYesNoInner"></div> 639 <div class="triggerer"></div> 515 640 516 </div> 641 517 <br/> -
wp-autosearch/trunk/readme.txt
r1539978 r1690223 1 1 === WP AutoComplete Search === 2 Contributors: netflixtechweb3 Tags: custom post type search, live search, jquery autocomplete, searchbox, ecommerce search, real time search, search suggest, ajax suggest, Ajax search, Custom search widget4 Requires at least: 4.62 Contributors: Netflixtech 3 Tags: custom post type search,live search,jquery autocomplete,autocomplete,searchbox ,jquery ui,themeroller,ecommerce search,real time search,wordpress autocomplete,instant search plugin,search suggest,woocommerce product search,ajax suggest,Wordpress Ajax search,Best Autocomplete Search bar,Custom search widget box,metadata, meta, post meta, autocomplete 4 Requires at least: 3.5 5 5 License: GPLv2 or later 6 6 License URI: http://www.gnu.org/licenses/gpl-2.0.html 7 Tested up to: 4.6 8 Stable tag: 1.0 7 Tested up to: 4.8.0 8 Stable tag: 1.0.2 9 A highly customizable AJAX-based WordPress search bar alternative with the ability to autocomplete. 9 10 10 WordPress auto-complete for search bar11 11 12 12 == Description == 13 13 14 Wp auto search for word press plugin , A Word press live search and auto complete search plugin with custom post type and custom taxonomy type,14 Wp auto search for word press plugin , A Word press live search and auto complete search plugin with custom post type and custom taxonomy type, 15 15 16 16 This plugin lets you provide the user with auto search suggestions based on the information entered in the search field. … … 22 22 A highly customizable WP Autosearch AJAX-based WordPress search bar alternative with the ability to autocomplete faceted search queries. Users can quickly and dynamically browse through your site's taxonomies and post metadata to find exactly what they're looking for, and results can be loaded beneath the search bar instantly. 23 23 24 = Free Features = 24 25 <h3>Features</h3> 25 26 26 27 > Wp auto search plugin supported woocommerce,custom post type,Property auto search. 27 28 > 28 29 > Real time search :Ajax Query based website contents as you type information entered in the search field and get results as drop-down list immediately. 30 > 31 > **Free Features** 29 32 > 30 33 > * Fast search use word press native functionality … … 59 62 > * And Much more functionality…… 60 63 64 61 65 > **Translations** 62 66 > … … 64 68 > * Easy translate to any language 65 69 > * All text of the plug-in are customizable 66 > * Supported WPML plugin70 > * Supported WPML plugin 67 71 > 68 72 > **Pro Features** … … 77 81 > * Polish (Poland) 78 82 83 79 84 > All features from Free version included plus: 80 85 > … … 88 93 > * Show post description in search list drop down results. 89 94 > * More Layout Options. 90 > * Get answer to your question within one business day ([Support Policy](http://bestwebsoft.com/support-policy/))91 > [Upgrade to Pro Now](https://www.mojomarketplace.com/item/wordpress-live-search-and-auto-complete-search-plugin) 95 > * Get answer to your question within one business day.[Upgrade to Pro Now](https://www.mojomarketplace.com/item/wordpress-live-search-and-auto-complete-search-plugin) 96 92 97 93 98 If you have a feature suggestion or idea you'd like to see in the plugin, we'd love to hear about it! [Suggest a Feature](netflixtechweb@gmail.com) 94 99 95 = Documentation =100 = Documentation= 96 101 97 102 * [[Doc] Installation](http://demo.netflixtech.com/) 98 103 * [[Doc] Plugin Demo](http://demo.netflixtech.com/shop/) 99 * Use shortcode [wi_autosearch_suggest_form] or php shortcode wi_autosearch_suggest_form();104 * Use shortcode [wi_autosearch_suggest_form] or php shortcode wi_autosearch_suggest_form(); 100 105 101 106 = Help & Support = … … 103 108 Visit our Help Center if you have any questions, our friendly Support Team is happy to help — <netflixtechweb@gmail.com> 104 109 110 111 112 == Installation == 113 114 This section describes how to install the plugin and get it working. 115 116 e.g. 117 118 1. Upload the plugin folder `WordPress Live Search and Auto Complete Search` to the `/wp-content/plugins/` directory. 119 2. Activate the plugin through the "Plugins -> Installed Plugins -> Activate WP Autosearch" menu in WordPress. 120 3. Find WP Autosearch plugin ,which is located From setting menu -> WP Autosearch 121 122 105 123 = Donate = 106 124 107 125 Donations play an important role in supporting open-source projects. We greatly appreciate any donation you can make to help us continue further development of free products. 108 126 109 [Donate Now](https://www.paypal.me/netflixtech) 110 111 == Installation == 112 113 1. Upload the plugin folder `WordPress Live Search and Auto Complete Search` to the `/wp-content/plugins/` directory. 114 2. Activate the plugin through the "Plugins -> Installed Plugins -> Activate WP Autosearch" menu in WordPress. 115 3. Find WP Autosearch plugin, which is located From setting menu -> WP Autosearch 127 [Donate Now](https://www.paypal.me/Netflixtech90) 116 128 117 129 == Screenshots == 118 130 119 1. How to use wp auto search plugin 120 2. How to use wp auto search plugin 121 3. How to use wp auto search plugin 122 4. How to use wp auto search plugin 123 5. How to use wp auto search plugin 124 6. How to look on front end side 125 7. How to look on front end side 126 8. How to look on front end side 127 9. How to look on front end side 131 1. This screen shot description corresponds to Backend General options for wp autosearch plugin. /assets/screenshot-1.png 132 133 2. Wp autosearch in Image options. assets/screenshot-2.png 134 135 3. Wp autosearch in Frontend setting options and layout options and advance options. assets/screenshot-3.png,assets/screenshot-4.png,assets/screenshot-5.png 136 137 4. Settings screen showing How to use shortcode with wordpress widget. assets/screenshot-9.png 138 139 5. WP Autosearch look on front end side . assets/screenshot-6.png,assets/screenshot-7.png. 140 141 6. Multi language support./assets/screenshot-8.png 142 128 143 129 144 == Changelog == 145 = 1.0.3 = 146 * Resolved bug fix 147 * changes in Design layout and button view 148 149 = 1.0.2 = 150 * Add Header image banner 151 * changes in description text 152 153 = 1.0.1 = 154 * Bugfix readme text 155 * Added Banner image and screenshot 130 156 131 157 = 1.0 = -
wp-autosearch/trunk/wp-autosearch.php
r1532845 r1690223 5 5 Description:Wordpress realtime auto search suggestions of WordPress posts, pages,custom post,taxonomies and Order of Types 6 6 Author: Netflixtech 7 Version: 1.0 7 Version: 1.0.2 8 8 Author URI: http://netflixtech.com/ 9 9
Note: See TracChangeset
for help on using the changeset viewer.