Use the Plugin in your theme
The basic way to implement “Profi Search Form” into your WordPress site is by using the Shortcode. After you have created a search form, you can create a new Page, for example with the title “Detail Search” and add the shortcode into the page.
But, for the programmers: Wouldn’t it be great to have a detail search on your 404-Error-Page? “Profi Search Form” comes along with this possibility. After you have created a detail search form, you can extend your theme by using the following codeline:
<?php
if( function_exists( 'insert_searchform' ) ):
insert_searchform( '#id_of_searchform#' );
endif;
?>
Please replace #id_of_searchform
# by the ID, you have given the search form.
“Profi Search Form” also comes along with some filter_hooks. So if you are a programmer, you can extend the functionality of this Plugin very easily. Have a look in our Codex. If you are missing a filter-hook or some functionality, we would be pleased to help.