• Hi is it possible to remove the search icon on the header of the page. I don’t need search capability. Awesome theme. Many thanks

Viewing 1 replies (of 1 total)
  • hello,
    yes, you can remove the search option on the header. you can go to header.php and remove or close search function.
    like
    <div class=”search-toggle”>
    <?php _e( ‘Search’, ‘twentyfourteen’ ); ?>
    </div>

    <nav id=”primary-navigation” class=”site-navigation primary-navigation” role=”navigation”>
    <button class=”menu-toggle”><?php _e( ‘Primary Menu’, ‘twentyfourteen’ ); ?></button>
    <?php _e( ‘Skip to content’, ‘twentyfourteen’ ); ?>
    <?php wp_nav_menu( array( ‘theme_location’ => ‘primary’, ‘menu_class’ => ‘nav-menu’ ) ); ?>
    </nav>
    </div>

    <div id=”search-container” class=”search-box-wrapper hide”>
    <div class=”search-box”>
    <?php get_search_form(); ?>
    </div>

Viewing 1 replies (of 1 total)
  • The topic ‘remove search icon on header’ is closed to new replies.