Hi Jdvassos,
This theme has two search boxes, one on the left column (the sidebar) and one on the bottom of the page (the footer). You can adjust the display of the wordpress theme by going to the Dashboard, select Appearance, Customize. Here you can customize the display of your site. Go to widgets > Sidebar. Click on the arrow next to the upper box with the text “Search” and click on it. select remove in the dropdown page that appears.
Removing the search bar in the footer cannot be done from this menu. Go back to the Dashboard. Under appearance select Editor. You need to edit the template of “Theme Footer” (footer.php). Look for:
<div class="col-md-6 search">
<?php get_search_form(); ?>
</div>
Disable the PHP code in this block by adding //* before ?php:
<div class="col-md-6 search">
<//*?php get_search_form(); ?>
</div>
This change in code should remove the search bar from the footer.
-
This reply was modified 7 years, 11 months ago by thomasvangurp. Reason: code did not display well
-
This reply was modified 7 years, 11 months ago by thomasvangurp.