MyBB Community Forums

Full Version: Change the page opened when you press on the logo / change theme
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want the default page to come up when you put in the URL for the site or when you press the forums logo to take you here: http://exodusroleplay.org/portal.php

Not here: http://exodusroleplay.org/index.php

(You will need to set your theme to Dont use (testing))
Hi,

the logo it's different than the default land page.

For the logo you have to edit a template.

Admin Control Panel > Templates & Style > Templates > Your Theme > Header Templates > header

There you'll see somthing like:
		<!-- Logo -->
		<li class="unique-logo"><a href="{$mybb->settings['bburl']}"><img src="https://i.imgur.com/u09U9vd.png" title="{$mybb->settings['bbname']}"/></a></li>
		<!-- /Logo -->

You have only to change the a href line to:
<a href="{$mybb->settings['bburl']}/portal.php">

For the landing page when the URL it's written you'll have to change your .htaccess file

You'll have to add (or replace if any):
DirectoryIndex portal.php
(2018-09-05, 06:55 PM)NoRules Wrote: [ -> ]Hi,

the logo it's different than the default land page.

For the logo you have to edit a template.

Admin Control Panel > Templates & Style > Templates > Your Theme > Header Templates > header

There you'll see somthing like:
		<!-- Logo -->
		<li class="unique-logo"><a href="{$mybb->settings['bburl']}"><img src="https://i.imgur.com/u09U9vd.png" title="{$mybb->settings['bbname']}"/></a></li>
		<!-- /Logo -->

You have only to change the a href line to:
<a href="{$mybb->settings['bburl']}/portal.php">

For the landing page when the URL it's written you'll have to change your .htaccess file

You'll have to add (or replace if any):
DirectoryIndex portal.php

Thank you