MyBB Community Forums

Full Version: How do i remove the calander from my forum?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Heres my forum link:http://scriptkiddie.x10.mx/index.php
I want to completely remove the calandar not just deactivate it.
Delete calendar.php and remove the link.
(2011-07-15, 09:43 PM)Malcolm. Wrote: [ -> ]Delete calendar.php and remove the link.

How do i remove the link?

k so i deleted it but how do i remove the link now? Thanks. Sorry btw im new to mybb.
Edit the template 'header', search for calendar.php. Remove that line.
(2011-07-15, 09:51 PM)Malcolm. Wrote: [ -> ]Edit the template 'header', search for calendar.php. Remove that line.

I'm so sorry.. lol i'm suck at mybb... where would this be located? In my admin cp or in my cpanel? And if it's in my cpanel do you have any idea where it might be?
1. Go to Admin CP > Templates & Style > Templates > Your Template Set > Header Templates > header.

2. Copy and paste the contents of the template here.

I'll tell you what to replace it with.
Searching template names containing "header"
Master Templates
calendar_mini_weekdayheader Options
calendar_weekdayheader Options
header Options
headerinclude Options
header_welcomeblock_guest Options
header_welcomeblock_member Options
header_welcomeblock_member_admin Options
header_welcomeblock_member_moderator Options
showthread_classic_header Options
warnings_active_header Options
warnings_expired_header Options
nightynight Templates
header Options
header_welcomeblock_guest Options
header_welcomeblock_member Options
header_welcomeblock_member_admin Options
header_welcomeblock_member_moderator
You need to open the header template and paste the code here.
(2011-07-15, 10:00 PM)faviouz Wrote: [ -> ]You need to open the header template and paste the code here.

ohh ok sorry. found it.. heres my header code

<div id="container">
		<a name="top" id="top"></a>
		<div id="header">
			<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>
				</div>
			</div>
			<div id="panel">
				<div class="upper"><!-- This div(class="upper") is closed in the header_welcomeblock_member and header_welcomeblock_guest templates -->
					<div class="wrapper">
						<ul class="menu top_links">
							<li><a href="{$mybb->settings['bburl']}/search.php" class="search">{$lang->toplinks_search}</a></li>
							<li><a href="{$mybb->settings['bburl']}/memberlist.php" class="memberlist">{$lang->toplinks_memberlist}</a></li>
							<li><a href="{$mybb->settings['bburl']}/calendar.php" class="calendar">{$lang->toplinks_calendar}</a></li>
						</ul>
						{$welcomeblock}
			</div>
		</div>
		<div id="content">
			<div class="wrapper">
				{$pm_notice}
				{$bannedwarning}
				{$bbclosedwarning}
				{$unreadreports}
				{$pending_joinrequests}
				<navigation>
				<br />


I'm not a master at this but i assume i need to remove
<li><a href="{$mybb->settings['bburl']}/calendar.php" class="calendar">{$lang->toplinks_calendar}</a></li>

?
Yes, exactly. Remove that line and save the template.
Pages: 1 2