Advanced search plugin

Installation

1. Open your skin directory and try to find the file posts.main.php. If it's there open it, if you can't find it open index.main.php.

2. Search for this code in opened file.

// ------------------------- MESSAGES GENERATED FROM ACTIONS -------------------------
	messages( array(
			'block_start' => '<div class="action_messages">',
			'block_end'   => '</div>',
		) );
// --------------------------------- END OF MESSAGES ---------------------------------

3. Make it look like this (just add new lines below the messages code)

// ------------------------- MESSAGES GENERATED FROM ACTIONS -------------------------
	messages( array(
			'block_start' => '<div class="action_messages">',
			'block_end'   => '</div>',
		) );
// --------------------------------- END OF MESSAGES ---------------------------------


// Display search results
global $ASearch_plugin;
if( is_object($ASearch_plugin) )
{
	$ASearch_plugin->display_results();
}