MyBB Community Forums

Full Version: Make button point to a different website
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
So I am trying to make my home button point to a website outside of MyBB. I found the command line that makes it point to the portal which isĀ 

<li><a href="{$mybb->settings['bburl']}/portal.php" class="portal">{$lang->toplinks_portal}</a></li>



But I need it to point to www.mythicalgladiators.com


I am new to all of this and I am not sure where to start.

Any help would be greatly appreciated!
<li><a href="https://www.mythicalgladiators.com" class="portal">{$lang->toplinks_portal}</a></li>
(2019-11-25, 09:49 PM)Ashley1 Wrote: [ -> ]<li><a href="https://www.mythicalgladiators.com" class="portal">{$lang->toplinks_portal}</a></li>
That did it. Thank you so much!