MyBB Community Forums

Full Version: ? on Calendar and ? on error message I'm receiving
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm new and trying to navigate myself around... so please be kind.

www.thelenaweelocal.com/forum

I have the calendar button on the top right and when I click on the Word CALENDAR and would like it to link to MY calendar www.thelenaweelocal.com/monthlyevents.html

Where do I go to change the code and what is the exact code I should be using. I've been playing around all eve. and can't get it.


ALSO, I am getting the following error, when logging in as admin. I am still able to do everything as the admin CP... but here is the error message: Your forum account is currently banned. Ban Reason: Unknown
Ban will be lifted: Unknown

What should I do?
THANK YOU SO MUCH
<li><a href="{$mybb->settings['bburl']}/calendar.php">{$lang->toplinks_calendar}</a></li>
this is the code for the calendar, so you do:

<li><a href="http://www.thelenaweelocal.com/monthlyevents.html"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/calendar.gif" alt="" title="" />{$lang->toplinks_calendar}</a></li>
Open ACP > Templates & Styles > Templates > Header Templates > Header and replace:

<li><a href="{$mybb->settings['bburl']}/calendar.php"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/calendar.gif" alt="" title="" />{$lang->toplinks_calendar}</a></li>

with:

<li><a href="http://www.thelenaweelocal.com/monthlyevents.html"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/calendar.gif" alt="" title="" />{$lang->toplinks_calendar}</a></li>

Edit: Beaten by JonP Wink
Offtopic: this been happening alot lately Toungue


Hope those help, they should Smile
PERFECT... Thank you for teaching me how to do that. I appreciate it!