Set plugin page as homepage

There are a few methods to accommplish this goal.

Easiest in my humble opinion is to do a HTACCESS Redirect such as

 Redirect 301 / http://conradbowenrealestate.com/homes-for-sale-search/

Another method would be to use the wp_redirect function as shown in the codex add a new function and include a code snippet like the one below to your functions.php file.

 wp_safe_redirect( $url );
 wp_redirect( 'http://conradbowenrealestate.com/homes-for-sale-search/' );

The third option would be to use a plugin such as Redirection
With this plugin you can address your 301 redirects right from within the WordPress dashboard.

Hope one of these solutions solve your issue. 🙂