MyBB Community Forums

Full Version: Need to remove some things
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
HI i have my site
http://creativemodderz.com/
i want to know how can i remove the

-Open Buddy List

At the bottom
-English (American)
-Contact Us
-Creative Modderz
-Return to Top
-Lite (Archive) Mode
-RSS Syndication
-Help

and the top were it shows
-search
-member list
-calendar
if possible can i make one of those become like something different like a gallery or a website page or something.
AdminCP > Templates > Your theme's templates > and follow the following;

1) Buddy List: --> Header Templates > header_welcomeblock_member template > find and remove the code of Buddy list.

				<span class="links">
					<a href="#" onclick="MyBB.popupWindow('{$mybb->settings['bburl']}/misc.php?action=buddypopup', 'buddyList', 350, 350);">{$lang->welcome_open_buddy_list}</a>
				</span>

2) Bottom Menu: Footer Templates > footer > and remove the "bottommenu" code from there.

			<div class="bottommenu">
				<div class="float_right">{$lang_select}</div>
				<div>
					<span class="smalltext"><a href="{$mybb->settings['contactlink']}">{$lang->bottomlinks_contactus}</a> | <a href="{$mybb->settings['homeurl']}">{$mybb->settings['homename']}</a> | <a href="#top">{$lang->bottomlinks_returntop}</a> | <a href="#content">{$lang->bottomlinks_returncontent}</a> | <a href="<archive_url>">{$lang->bottomlinks_litemode}</a> | <a href="{$mybb->settings['bburl']}/misc.php?action=syndication">{$lang->bottomlinks_syndication}</a></span>
				</div>
			</div>

3) Top Menu: Header Templates > header > search and remove menu code from there.

			<div class="menu">
				<ul>
					<li><a href="{$mybb->settings['bburl']}/search.php"><img src="{$theme['imgdir']}/toplinks/search.gif" alt="" title="" />{$lang->toplinks_search}</a></li>
					<li><a href="{$mybb->settings['bburl']}/memberlist.php"><img src="{$theme['imgdir']}/toplinks/memberlist.gif" alt="" title="" />{$lang->toplinks_memberlist}</a></li>
					<li><a href="{$mybb->settings['bburl']}/calendar.php"><img src="{$theme['imgdir']}/toplinks/calendar.gif" alt="" title="" />{$lang->toplinks_calendar}</a></li>
					<li><a href="{$mybb->settings['bburl']}/misc.php?action=help"><img src="{$theme['imgdir']}/toplinks/help.gif" alt="" title="" />{$lang->toplinks_help}</a></li>
				</ul>
			</div>
Thank you Yaldaram for that, I wasn't the topic creator but I wanted to remove few stuff too.
Thanks mate!