Jump to content

Recommended Posts

Posted

Right, but I am only looking to remove the site name and not the page title. So if im looking at my profile the title is "Profile - Hemisphere Virtual Airlines". I am wonder how do I get it to only say "Profile"?

Posted

Which skin are you using?

Its custom.

If you are talking about the title in custom pages, go to /core/templates/pages_content/tpl

and remove <h1><?php echo $pagename;?></h1>

I am looking to remove it from the browser tab, my ultimate goal is to put a static title in <title> section in the <head> section of the layout.tpl file. and then use the dynamic page title on other parts of the skin.

  • Administrators
Posted

In the main index.php file there are two lines that you can change depending what version of the template system you are using;

$BaseTemplate->Set('title', MainController::$page_title .' - '.SITE_NAME);
$BaseTemplate->Set('page_title', MainController::$page_title .' - '.SITE_NAME);

Posted

In the main index.php file there are two lines that you can change depending what version of the template system you are using;

$BaseTemplate->Set('title', MainController::$page_title .' - '.SITE_NAME);
$BaseTemplate->Set('page_title', MainController::$page_title .' - '.SITE_NAME);

Thanks simpilot, I'll try this tonight and report back.

  • 2 years later...
Posted

Does anyone know how to remove the site name in the page title?

Thanks

You answered my question and it works but somehow now it doesn't. For some reason once again it is showing the page titles.

  • Moderators
Posted

$BaseTemplate->Set('title', MainController::$page_title .' - '.SITE_NAME);
$BaseTemplate->Set('page_title', MainController::$page_title .' - '.SITE_NAME);

Doesn't that help you?

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...