In the theme settings, I have the Navigation Style set to "simple", so the default search box is not appearing. The option is selected in the general settings. Is there a way to manually add a search box to the top navigation within the BFWide child theme? And is it possible using the functions.php file?
Update: I figured it out:
<?php
add_action( 'bf_top', 'customHeader' );
add_action( 'wp_footer', 'footerWidgets' );
add_action( 'wp_head', 'remove_actions' );
function remove_actions() {
remove_action( 'bf_header', 'headerFeatures' );
remove_action( 'bf_header', 'bf_navigation' );
remove_action( 'bf_bottom_container', 'footerWidgets' );
}
function customHeader() { ?>
<div id="topheader"><div class="inside clearfix">
<div id="searchcontainer"><?php get_search_form(); ?></div>
<div id="headerfeatures"><?php headerFeatures(); ?><?php bf_navigation(); ?></div></div></div> <?php
}
?>