MyBB Community Forums

Full Version: Delete search
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
HI HOW TO DELETE SERCH AND HELP IN MYBB FORUM
[Image: 3380e34c9404113a1f4b9f3f772f413f.jpg]
Depending on image, You should be able to find it inside header template of your forum inside admin CP.
can you please link me to your forums so I can attempt to help you, I know the general solution I just want to give you a detailed solution.
(2016-10-19, 05:43 AM)[PMC] John Wrote: [ -> ]can you please link me to your forums so I can attempt to help you, I know the general solution I just want to give you a detailed solution.
http://kurdt.6te.net/index.php
If you want to remove the entire top section delete the div named with the ID "logo" (shown below)

<div id="logo">
<div class="wrapper">
	<a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a>
	<ul class="menu top_links">
		{$menu_portal}
		{$menu_search}
		{$menu_memberlist}
		{$menu_calendar}
		<li><a href="{$mybb->settings['bburl']}/misc.php?action=help" class="help">{$lang->toplinks_help}</a></li>
	</ul>
</div>
</div>


If you want to remove JUST the buttons and not that entire bar delete these two lines:

{$menu_search}

&

<li><a href="{$mybb->settings['bburl']}/misc.php?action=help" class="help">{$lang->toplinks_help}</a></li>
Both of the above can be accessed here:
AdminCP > Templates & Styles > Templates > (Your theme template) > Header Templates > Header