MyBB Community Forums

Full Version: Removing Caleandar option
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi, another question, I apologize. I feel that the Calendar option is not used and lowers the quality of forums. Can someone assist me in removing it?

[Image: jcx42.png]

Thanks!
I don't agree with your statement that a calendar lower the quality of forums, but you can remove the link from your header-template. Remove this from 'header' template:
<li><a href="{$mybb->settings['bburl']}/calendar.php">{$lang->toplinks_calendar}</a></li>
Thanks for the reply, I appreciate it.

Also, take this forum for example, all the calendar is being used for is Birthdays, other then that it's a waste of space.

Regardless, I'm thankful for the quick reply Smile

Also, how would I go about REPLACING the Calendar, with an "Upgrade" and a link to a paypal donation page.
(2011-06-01, 08:31 PM)Fresh Prince Wrote: [ -> ]Also, how would I go about REPLACING the Calendar, with an "Upgrade" and a link to a paypal donation page.

Replace this in the 'header' template:
<li><a href="{$mybb->settings['bburl']}/calendar.php"><img src="{$theme['imgdir']}/toplinks/calendar.gif" alt="" title="" />{$lang->toplinks_calendar}</a></li>
with
<li><a href="{$mybb->settings['bburl']}/upgrade.php"><img src="{$theme['imgdir']}/toplinks/upgrade.gif" alt="" title="" />Upgrade</a></li>

(You will have to upload a upgrade.gif file to the images/(theme folder)/toplinks/-folder)
Thanks for the quick response, would it be the same if I already deleted the Calendar?

Just add the line you gave me? Where do I put the link to my PayPal for when a member clicks Upgrade?
I don't know if you already have a plugin to handle the PayPal donation/payments? There are some but they aren't freely available. Try to google: mybb ipn

In the 'header' make sure you add the following between the "<ul>" and "</ul>" that is already in there.
<li><a href="{$mybb->settings['bburl']}/upgrade.php"><img src="{$theme['imgdir']}/toplinks/upgrade.gif" alt="" title="" />Upgrade</a></li>

You might need to change the link href depending on which plugin you are using.