Plugin info

Total downloads: 5,202
Active installs: 10
Total reviews: 0
Average rating: 0
Support threads opened: 1
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 1
Last updated: 4/17/2008 (6520 days ago)
Added to WordPress: 5/6/2016 (9 years old)
Minimum WordPress version: 2.0
Tested up to WordPress version: 2.5
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 6520 days ago • Support resolved 0%

10/100

Is LiveSearch abandoned?

Possibly abandoned (last update 6520 days ago).

Compatibility

Requires WordPress: 2.0
Tested up to: 2.5
Requires PHP: f

Developers

Languages

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

No similar plugins found yet.

Description

Allows you to include a ‘LiveSearch’ search box in your blog.

As the user types their search query in the search box, a list of results will appear in a pop-up style menu, formatted entirely in html. The menu can be navigated both by keyboard and mouse, and selecting a result from that list will load the requested page. Alternatively, pressing enter without selecting a result will bring up the search results page.

Compatible with the Search Pages plugin.

Installation

Copy the livesearch directory as-is in your wp-contents/plugins/ directory (the resulting path should be wp-contents/plugins/livesearch/ ).

Then optionally copy the livesearch/livesearch.css file in your wp-contents/themes/yourtheme/ directory (if you want to have a seperate css file for each theme). This file can be modified to match your theme.

Then enable the plugin from the WordPress plugin administration section, and enjoy!

Frequently Asked Questions

Search box looks different, but doesn’t work

Your theme needs to call both the header and the footer hooks of WordPress, else the plugin will not work. Themes should call those hooks by default, and if they don’t then they’re badly designed. Contact your theme creator, or add

<?php wp_head(); ?> 

just before the </head> tag in your header.php file (if it is missing), and

<?php do_action('wp_footer'); ?> 

just before the </body> tag in your footer.php file (again, if missing).

Plugin was installed, but search box does not look different than before, and doesn’t seem to work

This should not be an issue if you’re using the widget form of the plugin.

It might be the case that your theme does not include the searchform.php file properly. If that is the case, then when you follow the instructions and install the plugin, nothing will change visually on your site. What you need to do is find the file where the search form is inserted, and replace the entire section (enclosed in <form> tags).

The section starts with something like

<form action=... 

and ends with

</form> 

Delete that whole section, and in its place enter this code:

<?php include (TEMPLATEPATH . '/searchform.php'); ?> 

If you can’t do that (or don’t want to), then contact your theme designer and ask for the searchform.php file to be properly included. Then installing this script should work just fine.

Review feed

No reviews available

Screenshots

  1. Sample usage

    Sample usage

  2. Administration options

    Administration options

Changelog

No changelog available